picosam
07/03/2017, 2:11 PMfetchMore
, there is a way to know when fetching or "loading" from network is over so that I can hide my loader (spinner) accordingly?adrianocola
07/03/2017, 2:36 PMStore
and Sale
(1xN), and a sale should stick to the store it was created for, this was the Relation PQ that I was using:
query ($salesSale_id: ID!) {
SomeSaleExists(filter: {
id: $salesSale_id
store: null
})
}
This doesn’t work anymore (gives a No CONNECT permissions
)! Was working last week.allpwrfulroot
07/03/2017, 4:25 PMchunyang
07/03/2017, 5:11 PMWhoops. Looks like an internal server error. Please contact us in Slack (<https://slack.graph.cool>) and send us your Request ID: cj4oeil60po7e0149wpfkypj1
type Batch implements Node {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
productId: String!
quantity: Int!
unitCost: Int!
orderId: String! @relation(name: "MyRelation")
}
type Order implements Node {
id: ID! @isUnique
createdAt: DateTime!
updatedAt: DateTime!
clientId: String!
status: OrderStatus!
amountCollected: Int!
transportationCost: Int!
batches: [Batch!]! @relation(name: "MyRelation")
}
giedriusr
07/03/2017, 6:19 PMgiedriusr
07/03/2017, 6:19 PMqsys
07/03/2017, 6:34 PMarosca
07/03/2017, 6:48 PMmikita_du
07/03/2017, 7:01 PMuser
07/03/2017, 7:02 PMazurelogic
07/03/2017, 8:38 PMid_token
that Auth0 kicked back in the standard Authorization: Bearer <token>
header format. Am I missing something?azurelogic
07/03/2017, 8:39 PMjoshmadewell
07/03/2017, 8:40 PMazurelogic
07/03/2017, 8:40 PMazurelogic
07/03/2017, 8:41 PMquery ($node_id: ID!, $user_id: ID!) {
SomeUserExists(
filter: {
AND: [
{
id: $node_id
},
{
id: $user_id
}
]
}
)
}
joshmadewell
07/03/2017, 8:41 PMazurelogic
07/03/2017, 8:42 PMazurelogic
07/03/2017, 8:42 PMjoshmadewell
07/03/2017, 8:42 PMjoshmadewell
07/03/2017, 8:43 PMjoshmadewell
07/03/2017, 8:43 PMazurelogic
07/03/2017, 8:43 PMazurelogic
07/03/2017, 8:54 PM{"query":"{\n\tuser {\n firstName\n lastName\n }\n}"}
without getting an error when passing a particular user’s token, but the results are: {
"data": {
"user": null
}
}
azurelogic
07/03/2017, 8:56 PMilija
07/03/2017, 10:59 PMgrardb
07/03/2017, 11:06 PMgrardb
07/03/2017, 11:15 PMvisualbbasic
07/04/2017, 2:18 AMvisualbbasic
07/04/2017, 2:19 AMvisualbbasic
07/04/2017, 2:19 AM