Module Values.QueryGraphInputSource

Queries entities in the graph store.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The identifier of the Amazon DataZone domain.

    *)
  2. match_ : MatchClauses.t;
    (*

    List of query match clauses.

    *)
  3. maxResults : MaxResults.t option;
    (*

    The maximum number of entities to return in a single call to QueryGraph. When the number of entities to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to QueryGraph to list the next set of entities.

    *)
  4. nextToken : PaginationToken.t option;
    (*

    When the number of entities is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of entities, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to QueryGraph to list the next set of entities.

    *)
  5. additionalAttributes : AdditionalAttributes.t option;
    (*

    Additional details on the queried entity that can be requested in the response.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> ?additionalAttributes:??? -> domainIdentifier:DomainId.t -> match_:MatchClauses.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) list ]) list ] list | `String of DomainId.t | `Structure of (string * [> `List of [> `String of FormName.t ] list ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t