Get the list of all the accounts the user is authorized to view.
Usage
import { AccountsQuery } from 'nr1'
Examples
Declarative query
<AccountsQuery> {({ loading, error, data }) => { if (loading) { return <Spinner />; }
if (error) { return 'Error!'; }
return ( <List items={data} rowHeight={20}> {({ item }) => ( <ListItem key={item.id}> {item.id} - {item.name} </ListItem> )} </List> ); }}</AccountsQuery>
Imperative query
AccountsQuery.query().then(({ data }) => console.log(data));
Props
function | Render prop function as a child. function ( |
enum | Allows you to specify how you want your query to interact with the cached data.
|
number | Interval in milliseconds to poll for new data. Set to zero to avoid any kind of regular polling. |
boolean | When set to |
Methods
AccountsQuery.query
function (props: Object Object containing the query options. Any AccountsQuery
prop is valid as an option except children
and pollInterval
.
) => PromiseQueryResult
Type definitions
PromiseQueryResult
{error: ApolloClient.ApolloError, Runtime error with graphQLErrors
and networkError
properties.
data: Object, Object containing the result of your query.
fetchMore: function|null, If not null
, fetchMore
allows you to load more results for your query. New data is merged with previous data.
refetch: function, Refetch the query.
}
QueryResult
{loading: boolean, Indicates that the request is in flight.
error: ApolloClient.ApolloError, Runtime error with graphQLErrors
and networkError
properties.
data: Object, Object containing the result of your query.
fetchMore: function|null, If not null
, fetchMore
allows you to load more results for your query. New data is merged with previous data.
refetch: function, Refetch the query.
}