Get desktop application:
View/edit binary Protocol Buffers messages
* CommonGrpcService allows developers to query data from various endpoints. The service supports both Pull and Push queries. It provides methods to return metadata about the fields that can be used to construct the data types dynamically. This is preferred while working with libraries or in the case of dynamic scenarios and interpreted languages.
* Counts the number of records satisfying the given query. See [Query](../query) for the query format. If no query is specified, total number of records will be returned.
Response for `count`.
The number of records satisfying the query.
* Performs query on an endpoint. See [Query](../query) for the query format. If no query is specified, the first 50 records will be returned.
Response for `query`.
The list of field definitions.
The list of record data.
* Subscribes to the Dozer event stream, optionally applies a filter. See [Query](../query) for the filter format. This API is unstable and may change in the future.
Request for `OnEvent`.
The endpoints to subscribe to. Key is the endpoint name, value is the filter.
Gets all the endpoints Dozer is currently serving.
Request for `getEndpoints`.
(message has no fields)
Response for `getEndpoints`.
List of endpoint names.
Gets the field description of an endpoint.
Request for `getFields`.
The endpoint name.
Response for `getFields`.
The list of indexes of the keys that are used as the primary index.
The list of field definitions.
Request for `count` and `query`.
Used as request type in: CommonGrpcService.count, CommonGrpcService.query
The name of the endpoint to query.
JSON query string.