Hi everyone, I have questions that I would like to...
# troubleshoot
d
Hi everyone, I have questions that I would like to ask regarding GraphiQL. Firstly, what is the syntax of the container to put in field and value? Secondly, how can I get glossary term dataset from only one container? I am very new to this, so thank you very much.
b
hey Thanapat! so for your first question, if you want to get all datasets that belong to a certain container (I believe that's what you want based on your query) you're very close - all you have to do in
filters
to set
field: "container", value: <container urn>
the urn is going to look like "urnlicontainer:<uuid>"
and for your second question, can you clarify some more?
d
@bulky-soccer-26729 Thank you so much for answering, I very much appreciate it. Actually, your answer already answers both of the questions.
b
so that's actually just saying that there are no glossary terms there on that entity, not that there are null glossary terms. when querying with graphql if you request that field it will return you the field back to matter what, but it might just be null if there's nothing to return for it (this being the case)
d
@bulky-soccer-26729 Thank you