app

package module
v0.0.0-...-0f99094 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 2, 2017 License: MIT Imports: 11 Imported by: 0

README

Using GraphQL with Google App Engine

This is the underlying code for Create a GraphQL Server with Go and Google App Engine article.

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Post

type Post struct {
	ID        string    `json:"id" datastore:"-"`
	UserID    string    `json:"userId"`
	CreatedAt time.Time `json:"createdAt"`
	Content   string    `json:"content"`
}

type PostListResult

type PostListResult struct {
	Nodes      []Post `json:"nodes"`
	TotalCount int    `json:"totalCount"`
}

type User

type User struct {
	ID   string `json:"id" datastore:"-"`
	Name string `json:"name"`
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL