xxxxxxxxxx
# Get the list of quotes available to a user
# Requires a B2B token, on HTTP HEADERS replace the token placeholder for a valid B2B token.
query quotes {
quotes {
edges {
node {
...QuoteData
}
}
}
}
fragment QuoteData on QuoteType {
quoteTitle
totalAmount
status
}
xxxxxxxxxx
{
"Authorization": "Bearer <token>"
}
xxxxxxxxxx