asyncquery
Initiate a query with a callback to receive the response
post/asyncquery
Request body
Example request
{
"message": {
"query_graph": {
"edges": {
"e00": {
"subject": "n00",
"object": "n01",
"predicates": [
"biolink:physically_interacts_with"
]
}
},
"nodes": {
"n00": {
"ids": [
"CHEMBL.COMPOUND:CHEMBL112"
]
},
"n01": {
"categories": [
"biolink:Protein"
]
}
}
}
},
"log_level": "DEBUG"
}Response
The query is accepted for processing and the Response will be sent to the callback url when complete.
Example response
{
"job_id": "rXEOAosN3L",
"description": "Async_query has been queued",
"status": "Accepted"
}