Skip to content

Commit

Permalink
added GraphQL appointment model
Browse files Browse the repository at this point in the history
  • Loading branch information
Gugi-Games committed Sep 24, 2024
1 parent d5dc5f1 commit 7a88e81
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions src/main/resources/graphql/schema.graphqls
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,26 @@ type Company {
businessType: String
memberEmails: [String]
ownerEmail: String
}

type Appointment {
id: ID
from: DateTime
to: DateTime
companyI: ID
clientID: ID
assigneeID: ID
# Select Prompt → f.E. medical industry: Untersuchung, Operation
description: String
location: String
AppointmentStatus: String
}

type DateTime {
year: Int
month: Int
day: Int
hour: Int
minute: Int
second: Int
}

0 comments on commit 7a88e81

Please sign in to comment.