Skip to content

Scholarship Examples

List Eligible Scholarships

Retrieve scholarships the current user is eligible for.

graphql
query EligibleScholarships($pagination: PaginationInput) {
  scholarships {
    list(filters: { isEligible: true }, pagination: $pagination) {
      totalCount
      pageInfo {
        hasNextPage
        endCursor
      }
      nodes {
        id
        title
        amount
        deadline
      }
    }
  }
}

Try in Playground →

Search Scholarships by Text

graphql
query SearchScholarships($query: String!) {
  scholarships {
    list(filters: { search: $query }) {
      nodes {
        id
        title
      }
    }
  }
}

Variables:

json
{
  "query": "stem"
}

Try in Playground →

OwlFlow Developer Portal