Interface GraphQlClient.RetrieveSpec
- Enclosing interface:
- GraphQlClient
public static interface GraphQlClient.RetrieveSpec
Declares options to decode a field for a single response operation.
-
Method Summary
Modifier and TypeMethodDescription<D> reactor.core.publisher.Mono<D>
Decode the field to an entity of the given type.<D> reactor.core.publisher.Mono<D>
toEntity
(ParameterizedTypeReference<D> entityType) Variant oftoEntity(Class)
with aParameterizedTypeReference
.<D> reactor.core.publisher.Mono<List<D>>
toEntityList
(Class<D> elementType) Decode the field to a list of entities with the given type.<D> reactor.core.publisher.Mono<List<D>>
toEntityList
(ParameterizedTypeReference<D> elementType) Variant oftoEntityList(Class)
withParameterizedTypeReference
.
-
Method Details
-
toEntity
Decode the field to an entity of the given type.- Parameters:
entityType
- the type to convert to- Returns:
Mono
with the decoded entity. Completes empty when the field isnull
without errors, or ends withFieldAccessException
for an invalid response or a failed field- See Also:
-
toEntity
Variant oftoEntity(Class)
with aParameterizedTypeReference
. -
toEntityList
Decode the field to a list of entities with the given type.- Parameters:
elementType
- the type of elements in the list- Returns:
Mono
with a list of decoded entities, possibly an empty list, or ends withFieldAccessException
if the target field is not present or has no value.- See Also:
-
toEntityList
Variant oftoEntityList(Class)
withParameterizedTypeReference
.
-