We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Tags can be used to categorize files.
Some tags could be automatically applied, like the type of filament it was sliced for and the quality settings.
The text was updated successfully, but these errors were encountered:
GraphQL API for Labels (#1342)
326548c
Related to #1119 Example queries: ```GraphQL query labels { labels { edges { node { id name color files { edges { node { id } } } } } } } mutation AttachLabel { labelFile(input: {fileId: "27", labelId: "1"}) { file { id labels { edges { node { id } } } } } } mutation CreateLabel { createLabel(input: {name: "PLA", color: "#111"}) { label { id name color } } } query file { file(id: "28") { labels { edges { node { id name } } } } } ```
Successfully merging a pull request may close this issue.
Tags can be used to categorize files.
Some tags could be automatically applied, like the type of filament it was sliced for and the quality settings.
The text was updated successfully, but these errors were encountered: