Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: EI-2778 - Promote FKG SparqlQuery to beta #37

Merged
merged 1 commit into from
May 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion proto/iotics/api/meta.proto
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ service MetaAPI {
// SparqlQuery performs a SPARQL 1.1 query against the Federated Knowledge Graph of the Iotics network to which this
// host belongs. The result is returned as a sequence of chunks. Note that:
// - Result chunks MIGHT arrive out of order and it is the client's responsibility to re-assemble them.
// - This RPC is currently in alpha!
// - This RPC is currently in beta, it means:
// - the logic should remain unchanged,
// - the rpc call should remain unchanged,
// - the service can be interrupted without notice.
vtermanis marked this conversation as resolved.
Show resolved Hide resolved
rpc SparqlQuery(SparqlQueryRequest) returns (stream SparqlQueryResponse) {}

// SparqlUpdate performs a SPARQL 1.1 update. When performing an update, the update query must contain a reference to
Expand Down
Loading