data

package
v0.0.0-...-3b212d4 Latest Latest
Warning

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

Go to latest
Published: Dec 12, 2015 License: BSD-3-Clause, MIT Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	User            *graphql.Object
	Item            *graphql.Object
	ShippingProfile *graphql.Object
	PaymentProvider *graphql.Object

	Schema graphql.Schema
)

Functions

This section is empty.

Types

type ItemConnection

type ItemConnection struct {
	Edges    []ItemEdge `json:"edges"`
	PageInfo PageInfo   `json:"pageInfo"`
}

type ItemEdge

type ItemEdge struct {
	Node   database.Item `json:"node"`
	Cursor string        `json:"cursor"`
}

type NewItemPayload

type NewItemPayload struct {
	ClientMutationId string        `json:"clientMutationId"`
	Edge             ItemEdge      `json:"edge"`
	Me               database.User `json:"me"`
}

type PageInfo

type PageInfo struct {
	HasPreviousPage bool `json:"hasPreviousPage"`
	HasNextPage     bool `json:"hasNextPage"`
}

type PaymentProviderConnection

type PaymentProviderConnection struct {
	Edges    []PaymentProviderEdge `json:"edges"`
	PageInfo PageInfo              `json:"pageInfo"`
}

type PaymentProviderEdge

type PaymentProviderEdge struct {
	Node   database.PaymentProvider `json:"node"`
	Cursor string                   `json:"cursor"`
}

type ShippingProfileConnection

type ShippingProfileConnection struct {
	Edges    []ShippingProfileEdge `json:"edges"`
	PageInfo PageInfo              `json:"pageInfo"`
}

type ShippingProfileEdge

type ShippingProfileEdge struct {
	Node   database.ShippingProfile `json:"node"`
	Cursor string                   `json:"cursor"`
}

Jump to

Keyboard shortcuts

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