Top "Apollostack" questions

GraphQL mutation that accepts an array of dynamic size and common scalar types in one request

I need to be able to create a user and add it's favourite movies (An array of objects with a …

javascript graphql apollostack
Apollo GraphQL React - how to query on click?

In the Apollo React docs http://dev.apollodata.com/react/queries.html#basics there are examples of fetching automatically when …

reactjs graphql apollostack
How to resolve union/interface fields with GraphQL and ApolloStack

I am making use of interfaces with my GraphQL instance, but this question perhaps applies to unions as well. There …

node.js graphql apollostack
How to create a nested resolver in apollo graphql server

Given the following apollo server graphql schema I wanted to break these down into separate modules so I don't want …

graphql apollostack apollo-server
Apollo/GraphQL: Field Type to Use for Timestamp?

I'm storing a value to a postgres field that is of type timestamp with time zone. I was defining the …

postgresql graphql apollostack
Does apollo-client work on node.js?

I need a graphql client lib to run on node.js for some testing and some data mashup - not …

javascript node.js graphql apollostack
How to determine mutation loading state with react-apollo graphql

2018 Update: Apollo Client 2.1 added a new Mutation component that adds the loading property back. See @robin-wieruch's answer below and the …

reactjs graphql apollostack