dimensions-api-lab
dimensions-api-lab copied to clipboard
category_for.id/category_for conditions do not find anything
I am trying to search for journals by category and all my queries returned no results. Now I tried one of the examples https://github.com/digital-science/dimensions-api-lab/blob/98db4f031f25987df683f9503a221d330fd17f64/archive/2021-05-Honda/2021-05-Honda.ipynb#L841 also with a total count of 0
q = """
search publications
for \"\\\"chassis control\\\"~3\"
where category_for.id = "2211"
return publications[id+concepts_scores] sort by times_cited limit 1000
"""
dsl.query(q)
even changing to
q = """
search publications
where category_for.id = "2211"
return publications[id] sort by times_cited limit 1000
"""
dsl.query(q)
gives an empty result.