Skip to content
New issue

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

Add tags to files #1119

Open
sophiedeziel opened this issue Dec 2, 2023 · 0 comments · Fixed by #1338
Open

Add tags to files #1119

sophiedeziel opened this issue Dec 2, 2023 · 0 comments · Fixed by #1338
Labels
duplicate This issue or pull request already exists enhancement New feature or request

Comments

@sophiedeziel
Copy link
Owner

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.

@sophiedeziel sophiedeziel linked a pull request Mar 14, 2024 that will close this issue
sophiedeziel added a commit that referenced this issue Mar 15, 2024
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
        }
      }
    }
  }
}
```
@sophiedeziel sophiedeziel added duplicate This issue or pull request already exists enhancement New feature or request labels Jun 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
duplicate This issue or pull request already exists enhancement New feature or request
Projects
Development

Successfully merging a pull request may close this issue.

1 participant