dardub
09/08/2017, 8:51 PMsubscription {
Project(filter: {
mutation_in: [CREATED]
}) {
updatedFields
node {
id
}
}
}
But it's not invoking the function. Anyone see what I'm doing wrong? It's been about 10 min since I created a few new Project records.agartha
09/08/2017, 9:09 PMdardub
09/08/2017, 9:12 PMdardub
09/08/2017, 9:14 PMtype Project implements Node {
createdAt: DateTime!
id: ID! @isUnique
updatedAt: DateTime!
organization: Organization! @relation(name: "OrganizationOnProject")
startAt: DateTime!
completedAt: DateTime
type: ServiceType!
typeDescription: String!
po: String
comments: String
estimate: String
invoice: String
product: Product! @relation(name: "ProjectOnProduct")
users: [User!]! @relation(name: "ProjectOnUser")
contact: Contact! @relation(name: "ProjectOnContact")
notifiedAt: DateTime
}
dardub
09/08/2017, 9:47 PMagartha
09/08/2017, 9:57 PMdardub
09/08/2017, 11:20 PMagartha
09/08/2017, 11:21 PMdardub
09/08/2017, 11:21 PMdardub
09/08/2017, 11:22 PMdardub
09/08/2017, 11:22 PMagartha
09/08/2017, 11:22 PMagartha
09/08/2017, 11:22 PMdardub
09/08/2017, 11:23 PMagartha
09/08/2017, 11:25 PM