Specifying what graph to target in the sparql query

Hi,

I have added data to two distinct named graphs http://nabata.ai/graph/File and http://nabata.ai/graph/Document. But when I run the query using FROM in key world (and using stardog:context:all in the top bar) I get results for stardog:context:all and not from the specified named graph in sparql query.

"""PREFIX rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
PREFIX ex: http://example.org/
PREFIX rdfs: http://www.w3.org/2000/01/rdf-schema#
PREFIX owl:http://www.w3.org/2002/07/owl#

SELECT ?s ?p ?o
FROM http://nabata.ai/graph/File
WHERE {
?s ?p ?o .
}"""