As traduções são geradas por tradução automática. Em caso de conflito entre o conteúdo da tradução e da versão original em inglês, a versão em inglês prevalecerá.
Exemplos de OpenSearch consultas sem string no Neptune
Atualmente, o Neptune não oferece OpenSearch suporte direto a consultas de intervalo. No entanto, é possível obter o mesmo efeito usando a sintaxe Lucene e query-type="query_string”, como você pode ver nos exemplos de consulta a seguir.
Obter todos os vértices com idade maior que 30 e nome começando com “Si”
No Gremlin:
g.withSideEffect('Neptune#fts.endpoint', 'http://
your-es-endpoint
') .withSideEffect("Neptune#fts.queryType", "query_string") .V().has('*', 'Neptune#fts predicates.age.value:>30 && predicates.name.value:Si*');
EmSPARQL:
PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX neptune-fts: <http://aws.amazon.com/neptune/vocab/v01/services/fts#> SELECT * WHERE { SERVICE neptune-fts:search { neptune-fts:config neptune-fts:endpoint 'http://localhost:9200' . neptune-fts:config neptune-fts:queryType 'query_string' . neptune-fts:config neptune-fts:query "predicates.\\*foaf\\*age.value:>30 AND predicates.\\*foaf\\*name.value:Si*" . neptune-fts:config neptune-fts:field '*' . neptune-fts:config neptune-fts:return ?res . } }
Aqui, "\\*foaf\\*age
é usado em vez do completo URI para resumir. Essa expressão regular recuperará todos os campos que tenham ambos foaf
e age
noURI.
Obter todos os nós com idades entre 10 e 50 e um nome com uma combinação difusa com “Ronka”
No Gremlin:
g.withSideEffect('Neptune#fts.endpoint', '
http://your-es-endpoint
') .withSideEffect("Neptune#fts.queryType", "query_string") .V().has('*', 'Neptune#fts predicates.age.value:[10 TO 50] AND predicates.name.value:Ronka~');
EmSPARQL:
PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX neptune-fts: <http://aws.amazon.com/neptune/vocab/v01/services/fts#> SELECT * WHERE { SERVICE neptune-fts:search { neptune-fts:config neptune-fts:endpoint 'http://localhost:9200' . neptune-fts:config neptune-fts:queryType 'query_string' . neptune-fts:config neptune-fts:query "predicates.\\*foaf\\*age.value:[10 TO 50] AND predicates.\\*foaf\\*name.value:Ronka~" . neptune-fts:config neptune-fts:field '*' . neptune-fts:config neptune-fts:return ?res . } }
Obter todos os nós com um carimbo de data/hora que se enquadra nos últimos 25 dias
No Gremlin:
g.withSideEffect('Neptune#fts.endpoint', '
http://your-es-endpoint
') .withSideEffect("Neptune#fts.queryType", "query_string") .V().has('*', 'Neptune#fts predicates.timestamp.value:>now-25d');
EmSPARQL:
PREFIX foaf: <http://xmlns.com/foaf/0.1/> PREFIX neptune-fts: <http://aws.amazon.com/neptune/vocab/v01/services/fts#> SELECT * WHERE { SELECT * WHERE { SERVICE neptune-fts:search { neptune-fts:config neptune-fts:endpoint 'http://localhost:9200' . neptune-fts:config neptune-fts:queryType 'query_string' . neptune-fts:config neptune-fts:query "predicates.\\*foaf\\*timestamp.value:>now-25d~" . neptune-fts:config neptune-fts:field '*' . neptune-fts:config neptune-fts:return ?res . } }
Obter todos os nós com um carimbo de data/hora que se enquadre em um ano e mês específicos
No Gremlin, usar expressões matemáticas de data
g.withSideEffect('Neptune#fts.endpoint', '
http://your-es-endpoint
') .withSideEffect("Neptune#fts.queryType", "query_string") .V().has('*', 'Neptune#fts predicates.timestamp.value:>2020-12');
Uma alternativa ao Gremlin:
g.withSideEffect('Neptune#fts.endpoint', '
http://your-es-endpoint
') .withSideEffect("Neptune#fts.queryType", "query_string") .V().has('*', 'Neptune#fts predicates.timestamp.value:[2020-12 TO 2021-01]');