Some progress

This commit is contained in:
Riccardo
2021-01-03 16:49:26 +01:00
parent 8dd59ae64b
commit e72890fe28
15 changed files with 158 additions and 382 deletions

View File

@@ -6,6 +6,7 @@ type Query {
take: Int
orderBy: AppointmentOrderByInput
): Feed!
allProducts: [Product]
# users: [User!]!
}
@@ -64,6 +65,12 @@ type Appointment {
createdAt: DateTime!
}
type Product {
id: ID!
title: String!
qty: Integer
}
type Follow {
id: ID!
appointment: Appointment!
@@ -81,4 +88,5 @@ enum Sort {
desc
}
scalar Integer
scalar DateTime