useQuery
useQuery hook to send GraphQL request
query
GraphQL query
To define GraphQL query create graphql
file.
options
Object with additional configurations
Property | type |
---|---|
reducer | string |
namespace | string |
forceUpdates | boolean |
destroyOnUnmount | boolean |
queries | Array[String] |
parseErrors | string or function |
parseValue | string or function |
reducer
Function that will be called in redux reducer. Default 'replace'. By default connect resources has already defined 4 types of most reusable reducers. And you may use it as a String. More info
namespace
By default namespace will be used as query name (camellCased)
In this case namespace
is dogs
queries
By default queries will be automatically generated from graphql
In this case it will automatically generate queries
as ["first","cursor"]
. And then you can use this values from filters
parseValue
In case
GraphQl response in most cases has lot of nesting. To make data more simple, you can use parseValue option.
In case parseValue
is String
it will just use lodash.get
function to remove root nesting from graphQL response
parseErrors
parseErrors
has same API as parseValue
. And this function executes before parseValue
. It could be string or function and in general it is needed to convert GraphQL response (that is always success) to error. This function could be useful while working with forms.