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

conceptIds args in interactions query don't work #517

Open
jsstevenson opened this issue Aug 27, 2024 · 0 comments
Open

conceptIds args in interactions query don't work #517

jsstevenson opened this issue Aug 27, 2024 · 0 comments
Labels
bug Something isn't working priority:medium Medium priority

Comments

@jsstevenson
Copy link
Contributor

jsstevenson commented Aug 27, 2024

The drugConceptIds and geneConceptIds args for interactions appear to not be working:

{
  interactions(drugConceptIds:["rxcui:282388"]) {
    edges {
      node {
        drug {
          name
          conceptId
        }
        gene {
          name
          conceptId
        }
      }
    }
  }
}

This ^^ should return the same thing as this:

{
  interactions(drugNames: ["imatinib"]) {
    edges {
      node {
        drug {
          name
          conceptId
        }
        gene {
          name
          conceptId
        }
      }
    }
  }
}

However, the former returns an empty response. This isn't immediately urgent because I don't think this query is used on the frontend, but it's helpful for analysis reasons.

@jsstevenson jsstevenson added bug Something isn't working priority:medium Medium priority labels Aug 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working priority:medium Medium priority
Projects
None yet
Development

No branches or pull requests

1 participant