Merge pull request #8895 from thats4shaw/patch-1

DOCS HistoryViewerField updates
This commit is contained in:
Robbie Averill 2019-04-02 18:05:37 +13:00 committed by GitHub
commit acf449011b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1014,6 +1014,7 @@ SilverStripe\GraphQL\Manager:
fields: [ID, LastEdited]
operations:
readOne: true
rollback: true
SilverStripe\Security\Member:
fields: [ID, FirstName, Surname]
operations:
@ -1087,7 +1088,7 @@ const config = {
variables: {
limit,
offset: ((page || 1) - 1) * limit,
block_id: recordId,
id: recordId,
}
};
},
@ -1125,7 +1126,7 @@ const config = {
refetch({
offset: ((page || 1) - 1) * limit,
limit,
block_id: recordId,
id: recordId,
});
}
},