ДР
https://www.prismagraphql.com
Size: a a a
ДР
KN
KN
KN
KN
A
KN
KN
KN
KN
KN
KN
A
export default createPaginationContainer(
withStyles(styles)(UserList),
graphql`
fragment UserListAdmin on Query
@argumentDefinitions(
count: { type: "Int", defaultValue: 100 }
cursor: { type: "String" }
) {
users(first: $count, after: $cursor)
@connection(key: "UserListAdmin_users") {
edges {
node {
id
displayName
}
}
}
}
`,
{
getConnectionFromProps(props) {
return props.users;
},
},
);
dex.js:2284 Warning: RelayResponseNormalizer(): Payload did not contain a value for field `users: users(first:100).
Check that you are parsing with the same query that was used to fetch the payload.` в данном контексте?NT
𝖆
IV
IV