Upgrade dependent version: github.com/open-policy-agent/opa (#5315)
Upgrade dependent version: github.com/open-policy-agent/opa v0.18.0 -> v0.45.0 Signed-off-by: hongzhouzi <hongzhouzi@kubesphere.io> Signed-off-by: hongzhouzi <hongzhouzi@kubesphere.io>
This commit is contained in:
38
vendor/github.com/open-policy-agent/opa/internal/gqlparser/ast/fragment.go
generated
vendored
Normal file
38
vendor/github.com/open-policy-agent/opa/internal/gqlparser/ast/fragment.go
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
package ast
|
||||
|
||||
type FragmentSpread struct {
|
||||
Name string
|
||||
Directives DirectiveList
|
||||
|
||||
// Require validation
|
||||
ObjectDefinition *Definition
|
||||
Definition *FragmentDefinition
|
||||
|
||||
Position *Position `dump:"-"`
|
||||
}
|
||||
|
||||
type InlineFragment struct {
|
||||
TypeCondition string
|
||||
Directives DirectiveList
|
||||
SelectionSet SelectionSet
|
||||
|
||||
// Require validation
|
||||
ObjectDefinition *Definition
|
||||
|
||||
Position *Position `dump:"-"`
|
||||
}
|
||||
|
||||
type FragmentDefinition struct {
|
||||
Name string
|
||||
// Note: fragment variable definitions are experimental and may be changed
|
||||
// or removed in the future.
|
||||
VariableDefinition VariableDefinitionList
|
||||
TypeCondition string
|
||||
Directives DirectiveList
|
||||
SelectionSet SelectionSet
|
||||
|
||||
// Require validation
|
||||
Definition *Definition
|
||||
|
||||
Position *Position `dump:"-"`
|
||||
}
|
||||
Reference in New Issue
Block a user