All Programs

List all available programs and their descriptions

Suggestic provides a list of available programs for the user to be assigned to. If a user is using the free version of the app, the Balanced Diet will be assigned automatically.

Use the Personalization Console to manage programs.

User Role

  • programs: Get the list of all available programs.

Available Fields

Example

Get the list of available programs

{
  programs {
    edges {
      node {
        id
        databaseId
        name
        author
        isActive
        isPremium
      }
    }
  }
}

UI/UX example

In the same way, we have code examples, this is an implementation example in which see results of the API execution in the Suggestic App.

Get the list of available restrictions encoded in b64ids

{
  programs
  {
    edges{
      node{
        id
        databaseId
        name
        author
        isActive
        isPremium
        restrictions (encoded:true)
      }
    }
  }
}

Last updated