Struct fuel_gql_client::client::schema::message::OwnedMessagesConnectionArgs
source · pub struct OwnedMessagesConnectionArgs {
pub owner: Option<Address>,
pub after: Option<String>,
pub before: Option<String>,
pub first: Option<i32>,
pub last: Option<i32>,
}
Fields§
§owner: Option<Address>
Filter messages based on an owner
after: Option<String>
Skip until coin id (forward pagination)
before: Option<String>
Skip until coin id (backward pagination)
first: Option<i32>
Retrieve the first n coins in order (forward pagination)
last: Option<i32>
Retrieve the last n coins in order (backward pagination).
Can’t be used at the same time as first
.
Trait Implementations§
source§impl Debug for OwnedMessagesConnectionArgs
impl Debug for OwnedMessagesConnectionArgs
source§impl From<(Option<Address>, PaginationRequest<String>)> for OwnedMessagesConnectionArgs
impl From<(Option<Address>, PaginationRequest<String>)> for OwnedMessagesConnectionArgs
source§impl QueryVariables for OwnedMessagesConnectionArgs
impl QueryVariables for OwnedMessagesConnectionArgs
§type Fields = OwnedMessagesConnectionArgsFields
type Fields = OwnedMessagesConnectionArgsFields
A struct that determines which variables are available when using this struct.