```#getting-started can someone help me with the ...
# getting-started
s
Copy code
#getting-started  can someone help me with the curl format for the this query >>                                                                                                                                                                   query dataset {dataset(urn:"urn:li:dataset:(urn:li:dataPlatform:hive,logging_events,PROD)") {name,urn,lastIngested}}
✅ 1
a
Something like this will do (related docs) :
Copy code
curl --location --request POST '<http://localhost:8080/api/graphql>' \  
--header 'Authorization: Bearer <my-access-token>' \  
--header 'Content-Type: application/json' \  
--data-raw '{ "query": "query { dataset(urn: \"urn:li:dataset:(urn:li:dataPlatform:hive,logging_events,PROD)\") { name urn lastIngested } }", "variables":{}}'