29 lines
431 B
GraphQL
29 lines
431 B
GraphQL
query GetOffer($uuid: String!) {
|
|
getOffer(uuid: $uuid) {
|
|
uuid
|
|
teamUuid
|
|
status
|
|
# Location
|
|
locationUuid
|
|
locationName
|
|
locationCountry
|
|
locationCountryCode
|
|
locationLatitude
|
|
locationLongitude
|
|
# Product
|
|
productUuid
|
|
productName
|
|
categoryName
|
|
# Price
|
|
quantity
|
|
unit
|
|
pricePerUnit
|
|
currency
|
|
# Misc
|
|
description
|
|
validUntil
|
|
createdAt
|
|
updatedAt
|
|
}
|
|
}
|