Co-authored-by: Anwarul Islam <anwaarulislaam@gmail.com> Co-authored-by: jamesgeorge007 <25279263+jamesgeorge007@users.noreply.github.com>
11 lines
247 B
GraphQL
11 lines
247 B
GraphQL
mutation ImportUserCollectionsFromJSON(
|
|
$jsonString: String!
|
|
$reqType: ReqType!
|
|
$parentCollectionID: ID
|
|
) {
|
|
importUserCollectionsFromJSON(
|
|
jsonString: $jsonString
|
|
reqType: $reqType
|
|
parentCollectionID: $parentCollectionID
|
|
)
|
|
}
|