Schema Documentation
visibleProducts
Description
Connection between the RootQuery type and the visibleProduct type
Response
Returns a RootQueryToVisibleProductConnection
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 - RootQueryToVisibleProductConnectionWhereArgs | Arguments for filtering the connection |
Example
Query
query visibleProducts( $first: Int,$last: Int,$after: String,$before: String,$where: RootQueryToVisibleProductConnectionWhereArgs){ visibleProducts( first: $first, last: $last, after: $after, before: $before, where: $where ){ edges { ...RootQueryToVisibleProductConnectionEdgeFragment }nodes { ...VisibleProductFragment }pageInfo { ...RootQueryToVisibleProductConnectionPageInfoFragment } }}
Variables
{"first":987,"last":987,"after":"abc123","before":"abc123","where":RootQueryToVisibleProductConnectionWhereArgs}
Response
{"data":{"visibleProducts":{"edges":[RootQueryToVisibleProductConnectionEdge],"nodes":[VisibleProduct],"pageInfo":RootQueryToVisibleProductConnectionPageInfo}}}