Retailer
No description
type Retailer {
code: String!
customersByRetailerCode(
filter: CustomerFilter
first: Int
offset: Int
orderBy: [CustomerOrderBy!]
): [Customer!]!
customersByRetailerCodeConnection(
after: Cursor
before: Cursor
filter: CustomerFilter
first: Int
last: Int
offset: Int
orderBy: [CustomerOrderBy!] = [PRIMARY_KEY_ASC]
): CustomerConnection!
name: String!
sitesByRetailerCode(
filter: SiteFilter
first: Int
offset: Int
orderBy: [SiteOrderBy!]
): [Site!]!
}
Fields
Retailer.code ● String! non-null scalar
Retailer.customersByRetailerCode ● [Customer!]! non-null object
Reads and enables pagination through a set of Customer.
Retailer.customersByRetailerCode.filter ● CustomerFilter input
A filter to be used in determining which values should be returned by the collection.
Retailer.customersByRetailerCode.first ● Int scalar
Only read the first n values of the set.
Retailer.customersByRetailerCode.offset ● Int scalar
Skip the first n values.
Retailer.customersByRetailerCode.orderBy ● [CustomerOrderBy!] list enum
The method to use when ordering Customer.
Retailer.customersByRetailerCodeConnection ● CustomerConnection! non-null object
Reads and enables pagination through a set of Customer.
Retailer.customersByRetailerCodeConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
Retailer.customersByRetailerCodeConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
Retailer.customersByRetailerCodeConnection.filter ● CustomerFilter input
A filter to be used in determining which values should be returned by the collection.
Retailer.customersByRetailerCodeConnection.first ● Int scalar
Only read the first n values of the set.
Retailer.customersByRetailerCodeConnection.last ● Int scalar
Only read the last n values of the set.
Retailer.customersByRetailerCodeConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
Retailer.customersByRetailerCodeConnection.orderBy ● [CustomerOrderBy!] list enum
The method to use when ordering Customer.
Retailer.name ● String! non-null scalar
Retailer.sitesByRetailerCode ● [Site!]! non-null object
Reads and enables pagination through a set of Site.
Retailer.sitesByRetailerCode.filter ● SiteFilter input
A filter to be used in determining which values should be returned by the collection.
Retailer.sitesByRetailerCode.first ● Int scalar
Only read the first n values of the set.
Retailer.sitesByRetailerCode.offset ● Int scalar
Skip the first n values.
Retailer.sitesByRetailerCode.orderBy ● [SiteOrderBy!] list enum
The method to use when ordering Site.
Returned By
retailer query ● retailers query