Getting Started
Last updated
Was this helpful?
Last updated
Was this helpful?
LabelFlow GraphQL playground is the best way to get started with the API. Just connect to using any modern web browser, and get started. The interface should look like something like this.
As the images on LabelFlow are stored locally only, there is no authentication needed. All queries and mutations will be done on a database stored locally in your browser.
Letβs write a graphQL query which asks for the ids, names, and dataset id of the first 10 images you have access to:
You can now run the query by pressing the βΆοΈβRun Query Buttonβ in the top left of the screen. You should see the response appear on the right side of the screen.
Our Graph API is self-documented. You can access all the documentation in the GraphQL playground. There are several ways to benefit from the documentation:
Automatic autocompletion of your queries
Manual autocompletion of your queries, triggered by pressing CTRL-SPACE when writing a query in the query area
Schema documentation, using the βSchemaβ Button on the right side of the screen.
Here is a screenshot showcasing both Autocompletion (on the left side, in the query area), and the schema documentation (on the right side, in the sidebar). Our API is based on the principle of OpenCrud ().