Appointment with Mongo

This commit is contained in:
Riccardo
2021-01-02 18:37:03 +01:00
parent 30407cac0a
commit c752e3ec80
12 changed files with 330 additions and 112 deletions

View File

@@ -6,6 +6,7 @@ type Query {
take: Int
orderBy: AppointmentOrderByInput
): Feed!
# users: [User!]!
}
type Feed {
@@ -26,8 +27,13 @@ type Mutation {
password: String!
name: String!
): AuthPayload
login(email: String!, password: String!): AuthPayload
follow(appointmentId: ID!): Follow
login(
email: String!,
password: String!
): AuthPayload
follow(
appointmentId: ID!
): Follow
}
type Subscription {