@vue/apollo-composable / useFragment / Current
Interface: Current ​
Current state
1. Operation data ​
complete ​
complete:
boolean
Whether the fragment data is complete.
missing? ​
optionalmissing:MissingTree
Tree of missing field errors when complete is false.
result ​
result:
object|object[]
An object containing the result of your GraphQL fragment lookup after it completes.
resultState ​
resultState:
"complete"|"partial"
Describes the completeness of result.
partial: Some data could be fulfilled from the cache butresultis incomplete. This is only possible whenreturnPartialDataistrue.complete:resultis a fully satisfied query result fulfilled either from the cache or network.