feat: Integrate Data Connect and Implement Staff List View Directory
This commit is contained in:
42
backend/dataconnect/example/vendorRate/queries.gql
Normal file
42
backend/dataconnect/example/vendorRate/queries.gql
Normal file
@@ -0,0 +1,42 @@
|
||||
query listVendorRates @auth(level: USER) {
|
||||
vendorRates {
|
||||
id
|
||||
vendorId
|
||||
roleName
|
||||
category
|
||||
clientRate
|
||||
employeeWage
|
||||
markupPercentage
|
||||
vendorFeePercentage
|
||||
isActive
|
||||
notes
|
||||
createdAt
|
||||
|
||||
vendor{
|
||||
companyName
|
||||
region
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
query getVendorRateById($id: UUID!) @auth(level: USER) {
|
||||
vendorRate(id: $id) {
|
||||
id
|
||||
vendorId
|
||||
roleName
|
||||
category
|
||||
clientRate
|
||||
employeeWage
|
||||
markupPercentage
|
||||
vendorFeePercentage
|
||||
isActive
|
||||
notes
|
||||
createdAt
|
||||
|
||||
vendor{
|
||||
companyName
|
||||
region
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user