Gecko function in graphql not working

Hi all,

We have been quering the gecko function for indexVariants (and tagVariants) in a region of interest but it has not been outputting anything although we know there is information there.
Example
{
gecko(chromosome:β€œ1”,start:100000000,end:102000000){
indexVariants{
rsId
},
tagVariants{
id
}
}
}

1 Like

Dear Zhana,
welcome to our Community!
The API endpoint you are querying is now obsolete, and has been replaced with the LocusPageQuery endpoint. However, that request also returns no tag and lead data for your region of interest. I have passed the issue onto our Back End team, which will further investigate the problem.
Apologies for any inconvenience this may cause to you.
Best wishes,
Annalisa

Any updates on this? I am having this issue with the following query:

query rangeQuery {
  gecko(chromosome: "1", start:154053788, end:154953788) {
    studies {
      studyId
      traitReported
      pubAuthor
      pubDate
      pmid
      hasSumstats
    }
  }
}

Or one can try simply this link.

By the way I didn’t understand why the existing answer says it’s replaced with something else. gecko() is still a valid function in the current GraphQL API right?