Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
16 | public function createFolder(string $name): Autentique |
||
17 | { |
||
18 | $this->data->query = 'mutation CreateFolderMutation($folder: FolderInput!) { createFolder(folder: $folder) { id name type created_at}}'; |
||
19 | $this->data->variables = ["folder" => ["name" => $name]]; |
||
20 | |||
21 | $this->execute(); |
||
22 | return $this; |
||
23 | } |
||
65 | } |