Tavo
10/10/2017, 7:03 AMTavo
10/10/2017, 7:04 AMJosef Henryson
10/10/2017, 7:37 AMtaikn
10/10/2017, 7:41 AMCREATE
permissions on File
type are currently skipped, but READ
permissons work, what about UPDATE
and DELETE
permissions? Are these accepted on File
type?meikoudras
10/10/2017, 9:49 AMmeikoudras
10/10/2017, 10:40 AMmulyoved
10/10/2017, 11:08 AMgraphcool deploy
console say use graphcool pull -p ....
graphcool@next say pull deprecated, when try pull anyway give error message Please provide a valid environment that has a valid project id
any idea what did I missed?joar
10/10/2017, 1:09 PMCall to <https://wt-graphcool.it.auth0.com/api/run/<id>/<id>> failed with: Request timeout to <http://wt-graphcool.it.auth0.com/34.253.94.166:443|wt-graphcool.it.auth0.com/34.253.94.166:443> after 5000 ms
joar
10/10/2017, 1:09 PMnick.kozhukharenko
10/10/2017, 2:08 PMchandlervdw
10/10/2017, 2:24 PMid: ID
field or by a custom urlSlug: String
field. I donāt know if the slug is an ID or a Stringā¦Danny P
10/10/2017, 3:05 PMCustomer
and User
? Are they the same?peterp
10/10/2017, 3:36 PMbe4r
10/10/2017, 4:16 PMfetchPolicy
being set to network-only
. Setting this causes the query to refetch once it is mounted on the client side. Therefore, the render appears like so:
Server Rendered HTML correct --> Loading Bar --> Rendered HTML
whereas it should just be Server Rendered HTML correct
. Anyone have recommendations on how to solve this?welf
10/10/2017, 4:27 PMinterface SomeInterface {
id: ID! @isUnique
users: [User!]! @relation(name: "SomeRelationOnUser")
isPuplished: Bool! @defaultValue(value: false)
}
⦠and a type which implements this interface:
type SomeType implements SomeInterface {
id: ID!
users: [User!]!
isPublished: Bool!
}
⦠should I repeat all those @isUnique
, @defaultValue
and @relation
in the type declaration or it will be inherited from interface?notrab
10/10/2017, 4:28 PMdata.permissions[0].operation should match pattern
when graphcool.yml
permissions are set to - operation: '*'
notrab
10/10/2017, 4:28 PMPkmmte
10/10/2017, 6:16 PMpanzupa
10/10/2017, 6:21 PMpanzupa
10/10/2017, 6:24 PMmpiroc
10/10/2017, 6:39 PMmpiroc
10/10/2017, 6:39 PMBrandon R
10/10/2017, 7:41 PMBrandon R
10/10/2017, 7:41 PMMenegazzi
10/10/2017, 7:55 PMtimbuckley
10/10/2017, 9:01 PM@relation
?
type Person {
pets: [Pet!]! <- like that
name: String!
}
type Pet {
name: String!
}
lastmjs
10/10/2017, 9:27 PMquery {
User(id: "cj8eurgqf30sc0112k3b6dkfl") {
email
}
}
Brandon R
10/10/2017, 9:37 PMBrandon R
10/10/2017, 9:37 PMgraphcool module
command... is it included with this version?Brandon R
10/10/2017, 9:38 PMgraphcool/0.7.0-beta.3 (darwin-x64) node-v8.6.0