mmw
06/22/2017, 2:55 PMmmw
06/22/2017, 2:56 PMdk0r
06/22/2017, 3:02 PMfilter
to get only the data they separately require.mmw
06/22/2017, 3:03 PMmonkeybonkey
06/22/2017, 3:54 PMpaulk
06/22/2017, 4:07 PMpaulk
06/22/2017, 4:07 PMpaulk
06/22/2017, 4:08 PMindex.js
(https://github.com/graphcool-examples/freecom-tutorial/blob/master/freecom-05-final/frontend/src/index.js)agartha
06/22/2017, 4:11 PMagartha
06/22/2017, 4:11 PMpaulk
06/22/2017, 4:13 PMpaulk
06/22/2017, 4:14 PMpaulk
06/22/2017, 4:14 PMbe4r
06/22/2017, 4:16 PMckelley
06/22/2017, 4:27 PMonelastjedi
06/22/2017, 4:39 PMpicosam
06/22/2017, 4:44 PMmike.johnson
06/22/2017, 4:54 PMckelley
06/22/2017, 5:53 PMhasNextPage
field on pageInfo
returns false
for all the configs i've tried even when there are more pages. anyone else had this issue?be4r
06/22/2017, 6:09 PMdk0r
06/22/2017, 6:57 PMcreatePokemon
function duplicated here?dk0r
06/22/2017, 6:57 PMagartha
06/22/2017, 7:10 PMagartha
06/22/2017, 8:49 PMagartha
06/22/2017, 9:21 PMjoshjoe
06/22/2017, 9:45 PMprimary
?picosam
06/22/2017, 10:08 PMsebas.i
06/22/2017, 11:38 PMRequest ID: cj492g4akrjv801818xeurxp0
virtualirfan
06/22/2017, 11:56 PMtype Instance implements Node {
createdAt: DateTime!
id: ID! @isUnique
name: String!
updatedAt: DateTime!
}
Why does this, in the playground, highlight an error asking for a clientMutationId to be added.
mutation createInst {
createInstance(input: {name: "OLTP VM"}) {
instance {id}
}
}
Once this following is done, it works:
mutation createInst {
createInstance(input: {name: "OLTP VM", clientMutationId: "X"}) {
instance {id}
}
}
(Relay API)
Where did clientMutationId come from? It's not in the type spec.