12 lines
247 B
GraphQL
12 lines
247 B
GraphQL
|
|
mutation ImportUserCollectionsFromJSON(
|
||
|
|
$jsonString: String!
|
||
|
|
$reqType: ReqType!
|
||
|
|
$parentCollectionID: ID
|
||
|
|
) {
|
||
|
|
importUserCollectionsFromJSON(
|
||
|
|
jsonString: $jsonString
|
||
|
|
reqType: $reqType
|
||
|
|
parentCollectionID: $parentCollectionID
|
||
|
|
)
|
||
|
|
}
|