spring-graphql-demo/dgs-graphql/src/main/resources/schema/expense.graphql

16 lines
219 B
GraphQL

input ExpenseFilter {
isIncome: Boolean
}
type Expense {
id: ID
description: String
amount: Int
isIncome: Boolean
}
type ExpensePage {
list: [Expense]
totalPages: Int
currentPage: Int
}