Skip to content

Query versions filtered by hero version id #871

@BigRoy

Description

@BigRoy

Story

From a list of hero versions I'd like to efficiently find their real version entities.

Problems

I can not filter by hero_version_id (heroVersionId) in a GraphQL query:

query MyQuery {
  project(name: "test") {
    versions(filter: "{\"conditions\":[{\"key\":\"heroVersionId\",\"operator\":\"notnull\"}]}") {
      edges {
        node {
          heroVersionId
        }
      }
    }
  }
}

Results in: Invalid key: hero_version_id

But preferably I'd pass a filter of a list of hero version ids to find exactly only those relevant entries to reduce the response.

Proposal

Have some means to quickly find the real version entities from hero version entities (or their ids)

TODO

  • ...

Attachments

Metadata

Metadata

Assignees

Labels

No labels
No labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions