CompaniesField
A list of companies filtered by input.
interface CompaniesField {
companies(
after: String
before: String
filter: CompanyFilter
first: Int
last: Int
orderBy: CompanyOrder
): CompanyConnection
}
Fields
CompaniesField.companies ● CompanyConnection object common
Lists all companies.
CompaniesField.companies.after●Stringscalar commonReturns the elements in the list that come after the specified cursor.
CompaniesField.companies.before ● String scalar common
Returns the elements in the list that come before the specified cursor.
CompaniesField.companies.filter ● CompanyFilter input common
The fields by which to filter the results.
CompaniesField.companies.first ● Int scalar common
Returns the first n elements from the list.
CompaniesField.companies.last ● Int scalar common
Returns the last n elements from the list.
CompaniesField.companies.orderBy ● CompanyOrder input common
The field and direction by which to order the results.