You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 26, 2022. It is now read-only.
looks like some incompatibility in relations usage here
for example:
type Review {
id: ID!
user: User @relation(name: "WROTE", direction: "IN")
}
when seed tried to add relation:
ar8:AddUserReviews(from:"u4",to:"r8"){id}
a bunch of validation errors happens
"Unknown argument \"userid\" on field \"AddUserReviews\" of type \"Mutation\"."
"Cannot query field \"id\" on type \"_AddUserReviewsPayload\".",
"Field \"AddUserReviews\" argument \"from\" of type \"_UserInput!\" is required but not provided.",
"Field \"AddUserReviews\" argument \"to\" of type \"_ReviewInput!\" is required but not provided.",
I inspected schema and its looks like
AddUserReviews(
from: _UserInput!
to: _ReviewInput!
): _AddUserReviewsPayload
The text was updated successfully, but these errors were encountered:
looks like some incompatibility in relations usage here
for example:
when seed tried to add relation:
a bunch of validation errors happens
I inspected schema and its looks like
The text was updated successfully, but these errors were encountered: