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