OBJECT

PartnershipApplication

PartnershipApplication is a submitted partnership application.

link GraphQL Schema definition

1type PartnershipApplication {
2
3# ID of the user that submitted the application,
4# provided purely for the convenience of invalidating GraphQL client caches.
5id: ID!
6
7# A submitted application currently can only be unresolved or resolved:
8#
9# - A null resolvedAt timestamp means that the application is unresolved and may
10# be under review.
11#
12# - A non-null resolvedAt means that the application has been resolved, either
13# approved or rejected.
14#
15# A user with an approved application may now start the partnership on-boarding
16# flow.
17resolvedAt: Time
18
19}