OBJECT
RootQueryType
link GraphQL Schema definition
- type RootQueryType {
- # Get all cash fund lines
- #
- # Arguments
- # employeeId: [Not documented]
- # paymentMethod: [Not documented]
- (: ID, : String): [CashFundLine]
- # Get all categories
- #
- # Arguments
- # hideDeleted: [Not documented]
- (: Boolean): [Category]
- # Get all closings
- : [FiscalClosing]
- # Get all closings with transactions_ids
- : [FiscalClosingWithTransactions]
- # Get all customers
- : [Customer]
- # Get all employees
- #
- # Arguments
- # active: [Not documented]
- # hideDeleted: [Not documented]
- # pointOfSaleId: [Not documented]
- (: Boolean, : Boolean, : ID): [Employee]
- # Get all invoices
- #
- # Arguments
- # billingCustomerId: [Not documented]
- # orderId: [Not documented]
- # reversedInvoiceId: [Not documented]
- # status: [Not documented]
- (
- : ID,
- : ID,
- : ID,
- : String
- ): [Invoice]
- # Get all orders
- #
- # Arguments
- # customerId: [Not documented]
- # orderTrackingLines: [Not documented]
- # orderType: [Not documented]
- # refundedOrderId: [Not documented]
- # status: [Not documented]
- # transactionId: [Not documented]
- (
- : ID,
- : Boolean,
- : String,
- : ID,
- : String,
- : ID
- ): [Order]
- # Get all points of sale
- #
- # Arguments
- # hideDeleted: [Not documented]
- (: Boolean): [PointOfSale]
- # Get all products
- #
- # Arguments
- # hideDeleted: [Not documented]
- (: Boolean): [Product]
- # Get all transactions
- #
- # Arguments
- # applyCorrections: [Not documented]
- (: Boolean): [FiscalTransaction]
- # Get closings paginated with cursor per inserted_at asc
- #
- # Arguments
- # after: [Not documented]
- # first: [Not documented]
- # updatedAt: [Not documented]
- (: String, : Int, : DateTime): FiscalClosingWithTransactionsConnection
- # Get customers paginated with cursor per updated_at asc
- #
- # Arguments
- # after: [Not documented]
- # first: [Not documented]
- # hideDeleted: [Not documented]
- # updatedAt: [Not documented]
- (
- : String,
- : Int,
- : Boolean,
- : DateTime
- ): CustomerConnection
- # Get list of all loyalty lines
- : [LoyaltyLine]
- # Get one cash fund line
- #
- # Arguments
- # id: [Not documented]
- (: ID): CashFundLine
- # Get one closing
- #
- # Arguments
- # id: [Not documented]
- (: ID): FiscalClosing
- # Get one employee
- #
- # Arguments
- # id: [Not documented]
- (: ID): Employee
- # Get the estimated turnover for the current daily period
- : Turnover
- # Get one invoice with optional preload
- #
- # Arguments
- # id: [Not documented]
- # preload: [Not documented]
- (: String, : [String]): Invoice
- # Get the last inserted article by a terminal
- : FiscalArticle
- # Get the last inserted articles_correction by a terminal
- : FiscalArticlesCorrection
- # Get the last inserted cash fund line by a terminal
- : CashFundLine
- # Get the last inserted category
- : Category
- # Get the last inserted closing by a terminal
- : FiscalClosing
- # Get the last inserted customer
- : Customer
- # Get the last inserted invoice by a terminal
- : Invoice
- # Get the last inserted order by a terminal
- : Order
- # Get the last inserted order tracking line by a terminal
- : OrderTrackingLine
- # Get the last inserted payment by a terminal
- : FiscalPayment
- # Get the last inserted payments_correction by a terminal
- : FiscalPaymentsCorrection
- # Get the last inserted print by a terminal
- : FiscalPrint
- # Get the last inserted product
- : Product
- # Get the last inserted transaction by a terminal
- : FiscalTransaction
- # Get the last inserted transactions_correction by a terminal
- : FiscalTransactionsCorrection
- # Get last line of one customer loyalty lines
- #
- # Arguments
- # customerId: [Not documented]
- (: ID): LoyaltyLine
- # Get list of one customer loyalty lines
- #
- # Arguments
- # customerId: [Not documented]
- (: ID): [LoyaltyLine]
- # Get one order
- #
- # Arguments
- # id: [Not documented]
- (: ID): Order
- # Get list of one order tracking lines
- #
- # Arguments
- # orderId: [Not documented]
- (: ID): [OrderTrackingLine]
- # Get products filtered by a given category
- #
- # Arguments
- # category: [Not documented]
- (: ID): [Product]
- # Get one quote
- #
- # Arguments
- # id: [Not documented]
- (: ID): Quote
- # Get one team
- #
- # Arguments
- # token: [Not documented]
- (: String): Team
- # Get current terminal_info from context
- : TerminalInfo
- # Get the Z ticket for the closing_id
- #
- # Arguments
- # closingId: [Not documented]
- (: ID): ZTicket
- # Get loyalties_lines paginated with cursor
- #
- # Arguments
- # after: [Not documented]
- # first: [Not documented]
- # insertedAt: Will return loyalties_lines greater than the arg
- (: String, : Int, : DateTime): LoyaltyLineConnection
- # Get orders paginated with cursor per updated_at asc
- #
- # Arguments
- # after: [Not documented]
- # first: [Not documented]
- # updatedAt: [Not documented]
- (: String, : Int, : DateTime): OrderConnection
- # Get products paginated with cursor per updated_at asc
- #
- # Arguments
- # after: [Not documented]
- # first: [Not documented]
- # hideDeleted: [Not documented]
- # updatedAt: [Not documented]
- (: String, : Int, : Boolean, : DateTime): ProductConnection
- # Get quotes paginated with cursor per updated_at asc
- #
- # Arguments
- # after: [Not documented]
- # first: [Not documented]
- # updatedAt: [Not documented]
- (: String, : Int, : DateTime): QuoteConnection
- # Get status of terminal licence
- : TerminalLicence
- }
link Require by
This element is not required by anyone