We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After issue #49 we can add some things to the schema
Suggestion:
type User { id: ID! email: String! @id name: String! age: Int isAdmin: Boolean createdTimestamp: DateTime requests: [Request] @hasInverse(field: "owner") skills: [Skill] @hasInverse(field: "owner") gratitudeSent: [Gratitude] @hasInverse(field: "from") gratitudeReceived: [Gratitude] @hasInverse(field: "to") } type Request { id: ID! owner: User! @hasInverse(field: "requests") title: String! @search message: String! @search status: RequestStatus! hashtagVariants: [HashtagVariant]! @hasInverse(field: "requests") createdTimestamp: DateTime } enum RequestStatus { OPEN, TENTATIVE, FILLED, DONE } type Skill { id: ID! owner: User! @hasInverse(field: "skills") title: String message: String hashtagVariants: [HashtagVariant]! @hasInverse(field: "skills") isAvailable: Boolean createdTimestamp: DateTime } type Gratitude { id: ID! from: User! @hasInverse(field: "gratitudeSent") to: User! @hasInverse(field: "gratitudeReceived") message: String hashtagVariants: [HashtagVariant]! @hasInverse(field: "skills") createdTimestamp: DateTime } ``
The text was updated successfully, but these errors were encountered:
mjxchina
No branches or pull requests
After issue #49 we can add some things to the schema
Suggestion:
The text was updated successfully, but these errors were encountered: