-
Notifications
You must be signed in to change notification settings - Fork 25
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
POST query support multiple value combinations from multiple fields #49
Comments
Syntax shown in an example here:
will basically be equivalent to
Implemented in 89c0e0c |
@namespacestd0 Is this feature deployed? Tried on myvariant, seems not working at the moment. |
This feature should be universally available on all major biothings instances now. |
Remove unused imports in configuration.py
for reference, these two tests provide some example queries: biothings.api/tests/web/handlers/test_query.py Lines 780 to 828 in 6dce4ce
|
here is a use case from MyVariant.info: biothings/myvariant.info#89.
Possible solution:
q="1|12345,2|1000", scopes="chrom|vcf.position"
Using "|" to separate the value combination in
q
and the corresponding field combination inscopes
.A few other notes:
q=val1|val2&scopes=fld1,fld2|fld3
, where val1 should match either fld1 or fld2.The text was updated successfully, but these errors were encountered: