Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description of changes:
This will allow customers to execute QPT on Neptune RDF.
QPT Query Syntax:
aws athena start-query-execution --endpoint-url https://athena-webservice-preprod.us-east-1.amazonaws.com --result-configuration "OutputLocation"="s3://trianz-snowflake-athena-jdbc/synapse-predicate/" --query-execution-context Database="graph-database-rdf",Catalog="neptunerdfqpttest" --query-string "SELECT * FROM TABLE(system.query("DATABASE" => 'graph-database-rdf', "COLLECTION" => 'airport_rdf', "QUERY" => 'PREFIX prop: http://kelvinlawrence.net/air-routes/datatypeProperty/
PREFIX class: http://kelvinlawrence.net/air-routes/class/
select ?id ?type ?code ?icao ?desc ?region ?runways ?longest ?elev ?country ?city ?lat ?lon WHERE {
?id a class:Airport .
?id prop:type ?type .
?id prop:code ?code .
?id prop:icao ?icao .
?id prop:desc ?desc .
?id prop:region ?region .
?id prop:runways ?runways .
?id prop:longest ?longest .
?id prop:elev ?elev .
?id prop:country ?country .
?id prop:city ?city .
?id prop:lat ?lat .
?id prop:lon ?lon . }
limit 10'));"
By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice.