Schema Documentation

plugins

Description

Connection between the RootQuery type and the Plugin type

Response

Returns a RootQueryToPluginConnection

Arguments
NameDescription
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 - RootQueryToPluginConnectionWhereArgs Arguments for filtering the connection

Example

Query
query plugins(  $first: Int,$last: Int,$after: String,$before: String,$where: RootQueryToPluginConnectionWhereArgs){  plugins(    first: $first,    last: $last,    after: $after,    before: $before,    where: $where  ){    edges {      ...RootQueryToPluginConnectionEdgeFragment    }nodes {      ...PluginFragment    }pageInfo {      ...RootQueryToPluginConnectionPageInfoFragment    }  }}
Variables
{"first":987,"last":123,"after":"abc123","before":"xyz789","where":RootQueryToPluginConnectionWhereArgs}
Response
{"data":{"plugins":{"edges":[RootQueryToPluginConnectionEdge],"nodes":[Plugin],"pageInfo":RootQueryToPluginConnectionPageInfo}}}