jesper
02/14/2018, 2:07 PMjohannpinson
02/14/2018, 2:15 PMconsole.log
added...johannpinson
02/14/2018, 2:16 PMOlle
02/14/2018, 2:19 PMjarvis
02/14/2018, 3:02 PMsenorcodecat
02/14/2018, 3:32 PMMax Hodges
02/14/2018, 4:02 PMtbrannam
02/14/2018, 4:27 PMwithFilter
in conjunction with ctx.db.subscription
?agustif
02/14/2018, 5:06 PMagustif
02/14/2018, 5:06 PMsid.gupta
02/14/2018, 6:49 PMsid.gupta
02/14/2018, 6:49 PMauser
02/14/2018, 7:12 PMauser
02/14/2018, 7:13 PMauser
02/14/2018, 7:32 PMauser
02/14/2018, 7:35 PMAdam King
02/14/2018, 8:15 PMAdam King
02/14/2018, 8:26 PMSimon
02/14/2018, 8:39 PMjaaberg
02/14/2018, 8:41 PMrajit
02/14/2018, 8:49 PMpreviousValues
but that never seems to include any relation-related valuesSimon
02/14/2018, 8:55 PMrein
02/14/2018, 9:08 PMed
02/14/2018, 9:19 PMevery
and some
, lets say we have a friends field and we filter like this
friends_every: { id: $id }
OR
friends_some: {id: $id }
Discere
02/14/2018, 9:49 PMDiscere
02/14/2018, 9:52 PMtype Country @model {
createdAt: DateTime!
updatedAt: DateTime!
name: String!
city: [City!]! @relation(name: "CityInCountry")
id: ID! @isUnique
}
type City @model {
createdAt: DateTime!
updatedAt: DateTime!
name: String!
country: Country! @relation(name: "CityInCountry")
place: [Place!]! @relation(name: "PlaceInCity")
id: ID! @isUnique
}
type Place @model {
createdAt: DateTime!
updatedAt: DateTime!
name: String!
city: City! @relation(name: "PlaceInCity")
activity: [LifeActivity!]! @relation(name: "LifeActivityPlace")
id: ID! @isUnique
}
type LifeActivity @model {
createdAt: DateTime!
id: ID! @isUnique
name: String!
description: String!
content: String!
videoUrl: String
imageUrl: String
lifeGoal: [LifeGoal!]! @relation(name: "LifeGoalActivity")
people: [Person!]! @relation(name: "PeopleOnLifeActivity")
place: [Place!]! @relation(name: "LifeActivityPlace")
updatedAt: DateTime!
}
wallslide
02/14/2018, 11:57 PMRamsay Lanier
02/15/2018, 2:46 AMRamsay Lanier
02/15/2018, 2:46 AMRamsay Lanier
02/15/2018, 2:46 AM