Skip to main content

Sponsor

columns and relationships of "Sponsor"

type Sponsor {
address: String!
chainId: Int!
id: String!
sponsorshipCount: Int!
sponsorships(
distinct_on: [Sponsorship_select_column!]
limit: Int
offset: Int
order_by: [Sponsorship_order_by!]
where: Sponsorship_bool_exp
): [Sponsorship!]!
sponsorships_aggregate(
distinct_on: [Sponsorship_select_column!]
limit: Int
offset: Int
order_by: [Sponsorship_order_by!]
where: Sponsorship_bool_exp
): Sponsorship_aggregate!
totalAmount: numeric!
totalAmountDisplay: String!
}

Fields

Sponsor.address ● String! non-null scalar

Sponsor.chainId ● Int! non-null scalar

Sponsor.id ● String! non-null scalar

Sponsor.sponsorshipCount ● Int! non-null scalar

Sponsor.sponsorships ● [Sponsorship!]! non-null object

An array relationship

distinct select on columns

limit the number of rows returned

skip the first n rows. Use only with order_by

sort the rows by one or more columns

filter the rows returned

Sponsor.sponsorships_aggregate ● Sponsorship_aggregate! non-null object

An aggregate relationship

distinct select on columns

limit the number of rows returned

skip the first n rows. Use only with order_by

sort the rows by one or more columns

filter the rows returned

Sponsor.totalAmount ● numeric! non-null scalar

Sponsor.totalAmountDisplay ● String! non-null scalar