Schema Documentation
allPaColor
Description
Connection between the RootQuery type and the paColor type
Response
Returns a RootQueryToPaColorConnection
Arguments
Name | Description |
---|---|
first - Int | The number of items to return after the referenced "after" cursor |
last - Int | The number of items to return before the referenced "before" cursor |
after - String | Cursor used along with the "first" argument to reference where in the dataset to get data |
before - String | Cursor used along with the "last" argument to reference where in the dataset to get data |
where - RootQueryToPaColorConnectionWhereArgs | Arguments for filtering the connection |
Example
Query
query allPaColor( $first: Int,$last: Int,$after: String,$before: String,$where: RootQueryToPaColorConnectionWhereArgs){ allPaColor( first: $first, last: $last, after: $after, before: $before, where: $where ){ edges { ...RootQueryToPaColorConnectionEdgeFragment }nodes { ...PaColorFragment }pageInfo { ...RootQueryToPaColorConnectionPageInfoFragment } }}
Variables
{"first":123,"last":123,"after":"xyz789","before":"xyz789","where":RootQueryToPaColorConnectionWhereArgs}
Response
{"data":{"allPaColor":{"edges":[RootQueryToPaColorConnectionEdge],"nodes":[PaColor],"pageInfo":RootQueryToPaColorConnectionPageInfo}}}