The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. Back4App
  2. Industries and Activities
Public

32
27
32
27
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors
0
1
# Type your query
NotesNotes

Industries and Activities GraphQL API Playground

Play around with the industries and activities GraphQL API. Try the examples below.

All National Industries

query AllNationalIndustries {
  nationalIndustries(order: [code_ASC] skip: 0 limit: 10) {
    results {
      code
      industry {
        industryGroup {
          subsector {
            sector {
              title
            }
            title
          }
          title
        }
        title
      }
      title
      description
      crossReferences {
        ...on Element {
          value
        }
      }
      activities {
        results {
          title
        }
      }
    }
  }
}

Search Activity by Title

query SearchActivities {
  activities(where: { title: { matchesRegex: "hosting" options: "i" } }) {
    results {
      title
      nationalIndustry {
        code
        industry {
          industryGroup {
            subsector {
              sector {
                title
              }
              title
            }
            title
          }
          title
        }
        title
      }
    }
  }
}