// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`QueryGraph`](crate::operation::query_graph::builders::QueryGraphFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The identifier of the Amazon DataZone domain.</p><br>
/// - [`r#match(MatchClause)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::match) / [`set_match(Option<Vec::<MatchClause>>)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::set_match):<br>required: **true**<br><p>List of query match clauses.</p><br>
/// - [`max_results(i32)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of entities to return in a single call to <code>QueryGraph</code>. When the number of entities to be listed is greater than the value of <code>MaxResults</code>, the response contains a <code>NextToken</code> value that you can use in a subsequent call to <code>QueryGraph</code> to list the next set of entities.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::set_next_token):<br>required: **false**<br><p>When the number of entities is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of entities, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>QueryGraph</code> to list the next set of entities.</p><br>
/// - [`additional_attributes(AdditionalAttributes)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::additional_attributes) / [`set_additional_attributes(Option<AdditionalAttributes>)`](crate::operation::query_graph::builders::QueryGraphFluentBuilder::set_additional_attributes):<br>required: **false**<br><p>Additional details on the queried entity that can be requested in the response.</p><br>
/// - On success, responds with [`QueryGraphOutput`](crate::operation::query_graph::QueryGraphOutput) with field(s):
/// - [`items(Option<Vec::<ResultItem>>)`](crate::operation::query_graph::QueryGraphOutput::items): <p>The results of the <code>QueryGraph</code> action.</p>
/// - [`next_token(Option<String>)`](crate::operation::query_graph::QueryGraphOutput::next_token): <p>When the number of entities is greater than the default value for the <code>MaxResults</code> parameter, or if you explicitly specify a value for <code>MaxResults</code> that is less than the number of entities, the response includes a pagination token named <code>NextToken</code>. You can specify this <code>NextToken</code> value in a subsequent call to <code>QueryGraph</code> to list the next set of entities.</p>
/// - On failure, responds with [`SdkError<QueryGraphError>`](crate::operation::query_graph::QueryGraphError)
pub fn query_graph(&self) -> crate::operation::query_graph::builders::QueryGraphFluentBuilder {
crate::operation::query_graph::builders::QueryGraphFluentBuilder::new(self.handle.clone())
}
}