chore(legacy): relocate v1 dataconnect source
This commit is contained in:
23
legacy/dataconnect-v1/connector/customRateCard/queries.gql
Normal file
23
legacy/dataconnect-v1/connector/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