feat: Integrate Data Connect and Implement Staff List View Directory
This commit is contained in:
23
backend/dataconnect/example/customRateCard/queries.gql
Normal file
23
backend/dataconnect/example/customRateCard/queries.gql
Normal file
@@ -0,0 +1,23 @@
|
||||
query listCustomRateCards @auth(level: USER) {
|
||||
customRateCards {
|
||||
id
|
||||
name
|
||||
baseBook
|
||||
discount
|
||||
isDefault
|
||||
createdAt
|
||||
updatedAt
|
||||
}
|
||||
}
|
||||
|
||||
query getCustomRateCardById($id: UUID!) @auth(level: USER) {
|
||||
customRateCard(id: $id) {
|
||||
id
|
||||
name
|
||||
baseBook
|
||||
discount
|
||||
isDefault
|
||||
createdAt
|
||||
updatedAt
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user