dimensions-api-lab icon indicating copy to clipboard operation
dimensions-api-lab copied to clipboard

category_for.id/category_for conditions do not find anything

Open JonathanSchmidt1 opened this issue 10 months ago • 0 comments

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.

JonathanSchmidt1 avatar Apr 25 '24 08:04 JonathanSchmidt1