Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use public/_graphql/ subfolder #385

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions src/Schema/Services/SchemaTranscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,18 @@ class SchemaTranscriber

/**
* SchemaTranscriber constructor.
*
* @param GraphQLSchema $schema
* @param string $name
* @param string $rootDir
* @param string $rootDir Storage path for the generated file.
* Caution: This location may be used by frontend assets relying on GraphQL, e.g. silverstripe/assets.
*/
public function __construct(GraphQLSchema $schema, string $name, string $rootDir = PUBLIC_PATH)
public function __construct(GraphQLSchema $schema, string $name, string $rootDir = null)
{
$this->fs = new Filesystem();
$this->schema = $schema;
$this->name = $name;
$this->rootDir = $rootDir;
$this->rootDir = $rootDir ?: Path::join(PUBLIC_PATH, '_graphql');
}

/**
Expand Down