Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
graphql
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
graphql
Merge requests
!17
Allow SchemaExtension plugins to be prioritized.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Allow SchemaExtension plugins to be prioritized.
issue/graphql-3492221:3492221-allow-to-override
into
8.x-4.x
Overview
0
Commits
6
Pipelines
4
Changes
14
Merged
Pieter Frenssen
requested to merge
issue/graphql-3492221:3492221-allow-to-override
into
8.x-4.x
4 months ago
Overview
0
Commits
6
Pipelines
4
Changes
14
Expand
Closes
#3492221
0
0
Merge request reports
Compare
8.x-4.x
version 2
dc1b4dc7
4 months ago
version 1
a1c3a097
4 months ago
8.x-4.x (base)
and
latest version
latest version
fc97e50a
6 commits,
4 months ago
version 2
dc1b4dc7
4 commits,
4 months ago
version 1
a1c3a097
1 commit,
4 months ago
14 files
+
272
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
14
Search (e.g. *.vue) (Ctrl+P)
src/Annotation/SchemaExtension.php
+
9
−
0
Options
@@ -41,6 +41,15 @@ class SchemaExtension extends Plugin {
*/
public
$schema
;
/**
* The priority of the extension.
*
* Plugins with higher priority will be executed first.
*
* @var int
*/
public
$priority
=
0
;
/**
* SchemaExtension constructor.
*
Loading