20 lines
466 B
GraphQL
20 lines
466 B
GraphQL
mutation ReloadPhpExtensions($id: ID!) {
|
|
resetPhpExtensionCache {
|
|
query {
|
|
phpHandler(id: $id) {
|
|
id
|
|
phpExtensions {
|
|
name
|
|
enabled
|
|
}
|
|
installablePhpExtensions {
|
|
package
|
|
description
|
|
installedVersion
|
|
latestVersion
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|