You are here
96 classes are annotated with GraphQLField in GraphQL 8.3
- Alias in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/InternalUrl/Alias.php
- Plugin annotation
@GraphQLField(
id = "internal_url_path_alias",
secure = true,
name = "pathAlias",
description = @Translation("The url's path alias if any."),
response_cache_contexts = {"languages:language_url"},
type = "String",
…
- AvailableLanguages in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/AvailableLanguages.php
- List site-wide configured languages.
- BackupCar in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/BackupCar.php
- A car in a car. Not sure what's so funny about that.
- BlocksByRegion in modules/graphql_core/src/Plugin/GraphQL/Fields/Blocks/BlocksByRegion.php
- List all blocks within a theme region.
- Breadcrumbs in modules/graphql_core/src/Plugin/GraphQL/Fields/Breadcrumbs/Breadcrumbs.php
- Retrieve the breadcrumbs.
- Code in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/RedirectUrl/Code.php
- Plugin annotation
@GraphQLField(
id = "redirect_url_code",
secure = true,
name = "code",
description = @Translation("The redirect code."),
type = "Int",
provider="redirect",
parents = {"RedirectUrl"}
)
- ConstraintViolationCode in modules/graphql_core/src/Plugin/GraphQL/Fields/Mutations/ConstraintViolationCode.php
- Retrieve the error code of an entity constraint violation.
- ConstraintViolationMessage in modules/graphql_core/src/Plugin/GraphQL/Fields/Mutations/ConstraintViolationMessage.php
- Retrieve the message of an entity constraint violation.
- ConstraintViolationPath in modules/graphql_core/src/Plugin/GraphQL/Fields/Mutations/ConstraintViolationPath.php
- Retrieve the path of an entity constraint violation.
- Context in modules/graphql_core/src/Plugin/GraphQL/Fields/Context/Context.php
- Request arbitrary drupal context objects with GraphQL.
- EchoChamber in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/EchoChamber.php
- The obligatory echo service.
- Engine in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/Engine.php
- A cars engine type.
- EntityAccess in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityAccess.php
- Plugin annotation
@GraphQLField(
id = "entity_access",
secure = true,
name = "entityAccess",
type = "Boolean",
parents = {"Entity"},
arguments = {
"operation" = "String!"
}
)
- EntityBundle in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityBundle.php
- Plugin annotation
@GraphQLField(
id = "entity_bundle",
secure = true,
name = "entityBundle",
type = "String",
parents = {"Entity"}
)
- EntityById in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityById.php
- Plugin annotation
@GraphQLField(
id = "entity_by_id",
secure = true,
arguments = {
"id" = "String!"
},
contextual_arguments = {"language"},
deriver = "Drupal\graphql_core\Plugin\Deriver\Fields\EntityByIdDeriver"
)
- EntityChanged in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityChanged.php
- TODO: Should we derive this for each entity type individually?
- EntityCreated in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityCreated.php
- TODO: Should we derive this for each entity type individually?
- EntityCrudOutputEntity in modules/graphql_core/src/Plugin/GraphQL/Fields/Mutations/EntityCrudOutputEntity.php
- Retrieve a the mutated entity.
- EntityCrudOutputErrors in modules/graphql_core/src/Plugin/GraphQL/Fields/Mutations/EntityCrudOutputErrors.php
- Retrieve a list of error messages.
- EntityCrudOutputViolations in modules/graphql_core/src/Plugin/GraphQL/Fields/Mutations/EntityCrudOutputViolations.php
- Retrieve a list of entity mutation constraint violations.
- EntityDescription in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityDescription.php
- Plugin annotation
@GraphQLField(
id = "entity_description",
secure = true,
name = "entityDescription",
type = "String",
parents = {"EntityDescribable"}
)
- EntityField in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityField.php
- Plugin annotation
@GraphQLField(
id = "entity_field",
secure = true,
weight = -2,
deriver = "Drupal\graphql_core\Plugin\Deriver\Fields\EntityFieldDeriver",
)
- EntityFieldItem in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityFieldItem.php
- Plugin annotation
@GraphQLField(
id = "entity_field_item",
secure = true,
weight = -1,
deriver = "Drupal\graphql_core\Plugin\Deriver\Fields\EntityFieldItemDeriver",
)
- EntityId in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityId.php
- Plugin annotation
@GraphQLField(
id = "entity_id",
secure = true,
name = "entityId",
type = "String",
parents = {"Entity"}
)
- EntityLabel in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityLabel.php
- Plugin annotation
@GraphQLField(
id = "entity_label",
secure = true,
name = "entityLabel",
type = "String",
parents = {"Entity"}
)
- EntityLanguage in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityLanguage.php
- Plugin annotation
@GraphQLField(
id = "entity_language",
secure = true,
name = "entityLanguage",
type = "Language",
parents = {"Entity"}
)
- EntityOwner in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityOwner.php
- Plugin annotation
@GraphQLField(
id = "entity_owner",
secure = true,
name = "entityOwner",
type = "entity:user",
parents = {"EntityOwnable"}
)
- EntityPublished in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityPublished.php
- Plugin annotation
@GraphQLField(
id = "entity_published",
secure = true,
name = "entityPublished",
type = "Boolean",
parents = {"EntityPublishable"}
)
- EntityQueryCount in modules/graphql_core/src/Plugin/GraphQL/Fields/EntityQuery/EntityQueryCount.php
- Retrieve the count of an entity query.
- EntityQueryEntities in modules/graphql_core/src/Plugin/GraphQL/Fields/EntityQuery/EntityQueryEntities.php
- Retrieve the entity result set of an entity query.
- EntityQueryExclusive in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityQueryExclusive.php
- Query entities of the same type without the context's entity.
- EntityReferenceQuery in modules/graphql_core/src/Plugin/GraphQL/Fields/EntityReference/EntityReferenceQuery.php
- Plugin annotation
@GraphQLField(
id = "entity_reference_query",
secure = true,
type = "EntityQueryResult",
arguments = {
"filter" = "EntityQueryFilterInput",
"sort" = "[EntityQuerySortInput]",
"offset" = {
"type" = "Int",
…
- EntityReferenceReverse in modules/graphql_core/src/Plugin/GraphQL/Fields/EntityReference/EntityReferenceReverse.php
- Plugin annotation
@GraphQLField(
id = "entity_reference_reverse",
secure = true,
type = "EntityQueryResult!",
arguments = {
"filter" = "EntityQueryFilterInput",
"sort" = "[EntityQuerySortInput]",
"offset" = {
"type" =…
- EntityRendered in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityRendered.php
- Plugin annotation
@GraphQLField(
id = "entity_rendered",
name = "entityRendered",
type = "String",
secure = true,
deriver = "Drupal\graphql_core\Plugin\Deriver\Fields\EntityRenderedDeriver",
)
- EntityRevisionById in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityRevisionById.php
- Plugin annotation
@GraphQLField(
id = "entity_revision_by_id",
secure = true,
arguments = {
"id" = "String!"
},
contextual_arguments = {"language"},
deriver = "Drupal\graphql_core\Plugin\Deriver\Fields\EntityRevisionByIdDeriver"
)
- EntityRevisions in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityRevisions.php
- Plugin annotation
@GraphQLField(
id = "entity_revisions",
name = "entityRevisions",
secure = true,
parents = {"EntityRevisionable"},
type = "EntityQueryResult!",
arguments = {
"filter" = "EntityQueryFilterInput",
"sort" =…
- EntityTranslation in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityTranslation.php
- Plugin annotation
@GraphQLField(
id = "entity_translation",
secure = true,
name = "entityTranslation",
type = "Entity",
parents = {"Entity"},
arguments = {
"language" = "LanguageId!"
}
)
- EntityTranslations in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityTranslations.php
- Plugin annotation
@GraphQLField(
id = "entity_translations",
name = "entityTranslations",
secure = true,
type = "[Entity]",
parents = {"Entity"}
)
- EntityType in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityType.php
- Plugin annotation
@GraphQLField(
id = "entity_type",
secure = true,
name = "entityType",
type = "String",
parents = {"Entity"}
)
- EntityUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityUrl.php
- Plugin annotation
@GraphQLField(
id = "entity_url",
secure = true,
name = "entityUrl",
type = "Url",
parents = {"Entity"}
)
- EntityUuid in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/EntityUuid.php
- Plugin annotation
@GraphQLField(
id = "entity_uuid",
secure = true,
name = "entityUuid",
type = "String",
parents = {"Entity"}
)
- ExternalRequest in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/ExternalUrl/ExternalRequest.php
- Issue an external request and retrieve the response object.
- FileUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/File/FileUrl.php
- Entity route field override for files.
- Gadgets in tests/modules/graphql_override_test/src/Plugin/GraphQL/Fields/Gadgets.php
- A bikes gadgets.
- Garage in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/Garage.php
- List everything we've got in our garage.
- Gears in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/Gears.php
- The number of gears a bike has.
- ImageDerivative in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/Fields/Image/ImageDerivative.php
- Retrieve the image field derivative (image style).
- ImageHeight in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/Fields/Image/ImageHeight.php
- Retrieve the image height.
- ImageResourceHeight in modules/graphql_core/src/Plugin/GraphQL/Fields/Images/ImageResourceHeight.php
- Retrieve the image height.
- ImageResourceUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/Images/ImageResourceUrl.php
- Retrieve the image url.
- ImageResourceWidth in modules/graphql_core/src/Plugin/GraphQL/Fields/Images/ImageResourceWidth.php
- Retrieve the image width.
- ImageUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/Fields/Image/ImageUrl.php
- Retrieve the image url.
- ImageWidth in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/Fields/Image/ImageWidth.php
- Retrieve the image width.
- InternalPath in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/InternalUrl/InternalPath.php
- Retrieve a routes internal path.
- InternalRequest in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/InternalUrl/InternalRequest.php
- Issue an internal request and retrieve the response object.
- LanguageArgument in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/LanguageArgument.php
- The language enum value.
- LanguageDirection in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/LanguageDirection.php
- Retrieve a language's name.
- LanguageId in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/LanguageId.php
- Retrieve a language's id.
- LanguageIsDefault in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/LanguageIsDefault.php
- Whether the language is the default language.
- LanguageIsLocked in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/LanguageIsLocked.php
- Whether the language is locked.
- LanguageName in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/LanguageName.php
- Retrieve a language's name.
- LanguageSwitchLinkActive in modules/graphql_core/src/Plugin/GraphQL/Fields/LanguageSwitch/LanguageSwitchLinkActive.php
- Plugin annotation
@GraphQLField(
id = "language_switch_link_active",
secure = true,
name = "active",
type = "Boolean",
parents = {"LanguageSwitchLink"}
)
- LanguageSwitchLinkLanguage in modules/graphql_core/src/Plugin/GraphQL/Fields/LanguageSwitch/LanguageSwitchLinkLanguage.php
- Plugin annotation
@GraphQLField(
id = "language_switch_link_language",
secure = true,
name = "language",
type = "Language",
parents = {"LanguageSwitchLink"}
)
- LanguageSwitchLinks in modules/graphql_core/src/Plugin/GraphQL/Fields/LanguageSwitch/LanguageSwitchLinks.php
- Plugin annotation
@GraphQLField(
id = "url_language_switch_links",
secure = true,
name = "languageSwitchLinks",
type = "[LanguageSwitchLink]",
parents = {"InternalUrl"},
arguments = {
"language" = "LanguageId"
},
…
- LanguageSwitchLinkTitle in modules/graphql_core/src/Plugin/GraphQL/Fields/LanguageSwitch/LanguageSwitchLinkTitle.php
- Plugin annotation
@GraphQLField(
id = "language_switch_link_title",
secure = true,
name = "title",
type = "String",
parents = {"LanguageSwitchLink"}
)
- LanguageSwitchLinkUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/LanguageSwitch/LanguageSwitchLinkUrl.php
- Plugin annotation
@GraphQLField(
id = "language_switch_link_url",
secure = true,
name = "url",
type = "InternalUrl",
parents = {"LanguageSwitchLink"}
)
- LanguageWeight in modules/graphql_core/src/Plugin/GraphQL/Fields/Languages/LanguageWeight.php
- Retrieve a language's weight.
- LinkAttribute in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/Fields/Link/LinkAttribute.php
- Retrieve specific attributes of a menu link.
- LinkLabel in modules/graphql_core/src/Plugin/GraphQL/Fields/Link/LinkLabel.php
- Retrieve a link text.
- LinkUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/Entity/Fields/Link/LinkUrl.php
- Retrieve a link fields route object.
- LinkUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/Link/LinkUrl.php
- Retrieve a link's route object.
- LoudEchoChamber in tests/modules/graphql_override_test/src/Plugin/GraphQL/Fields/LoudEchoChamber.php
- This field will replace the existing "echo" field with a CAPSLOCK version.
- MenuByName in modules/graphql_core/src/Plugin/GraphQL/Fields/Menu/MenuByName.php
- Retrieve a menu by it's name.
- MenuDescription in modules/graphql_core/src/Plugin/GraphQL/Fields/Menu/MenuDescription.php
- Retrieve a Drupal menu's description.
- MenuLinkAttribute in modules/graphql_core/src/Plugin/GraphQL/Fields/MenuLink/MenuLinkAttribute.php
- Retrieve specific attributes of a menu link.
- MenuLinkDescription in modules/graphql_core/src/Plugin/GraphQL/Fields/MenuLink/MenuLinkDescription.php
- Menu link descriptions.
- MenuLinkExpanded in modules/graphql_core/src/Plugin/GraphQL/Fields/MenuLink/MenuLinkExpanded.php
- Check if the menu link is expanded.
- MenuLinkLabel in modules/graphql_core/src/Plugin/GraphQL/Fields/MenuLink/MenuLinkLabel.php
- Retrieve a menu links label.
- MenuLinkLinks in modules/graphql_core/src/Plugin/GraphQL/Fields/MenuLink/MenuLinkLinks.php
- Retrieve a menu links children.
- MenuLinks in modules/graphql_core/src/Plugin/GraphQL/Fields/Menu/MenuLinks.php
- Retrieves a menus links.
- MenuLinkUrl in modules/graphql_core/src/Plugin/GraphQL/Fields/MenuLink/MenuLinkUrl.php
- Retrieve a menu links route object.
- MenuName in modules/graphql_core/src/Plugin/GraphQL/Fields/Menu/MenuName.php
- Retrieve a menu's name.
- MoreWheels in tests/modules/graphql_override_test/src/Plugin/GraphQL/Fields/MoreWheels.php
- Replace existing "wheels" field with ... one more wheel.
- Number in tests/modules/graphql_enum_test/src/Plugin/GraphQL/Fields/Number.php
- A number field that returns a number with enum checking.
- Numbers in tests/modules/graphql_enum_test/src/Plugin/GraphQL/Fields/Numbers.php
- A number field that returns a number with enum checking.
- Path in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/Path.php
- Plugin annotation
@GraphQLField(
id = "url_path",
secure = true,
name = "path",
description = @Translation("The processed url path."),
type = "String",
response_cache_contexts = {"languages:language_url"},
parents = {"Url"}
)
- ResponseCode in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/Response/ResponseCode.php
- Get the response code of an internal or external request.
- ResponseContent in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/Response/ResponseContent.php
- Get the response content of an internal or external request.
- ResponseHeader in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/Response/ResponseHeader.php
- Get the a specific response header of an internal or external request.
- Route in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/Route.php
- Retrieve a route object based on a path.
- Routed in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/Routed.php
- Check if an Url is routed.
- RouteEntity in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/RouteEntity.php
- Retrieve the current routes entity, if it is an entity route.
- Target in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/RedirectUrl/Target.php
- Plugin annotation
@GraphQLField(
id = "redirect_url_target",
secure = true,
name = "target",
description = @Translation("The redirect target."),
type = "Url",
provider="redirect",
parents = {"RedirectUrl"}
)
- Translate in modules/graphql_core/src/Plugin/GraphQL/Fields/Routing/Translate.php
- Plugin annotation
@GraphQLField(
id = "url_translate",
secure = true,
name = "translate",
description = @Translation("The translated url object."),
type = "Url",
parents = {"Url"},
arguments = {
"language" = "LanguageId!"
},
…
- Type in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/Type.php
- Retrieves the type of vehicle.
- Wheels in tests/modules/graphql_plugin_test/src/Plugin/GraphQL/Fields/Wheels.php
- The number of wheels a vehicle has.