SCALAR
Boolean
The Boolean
scalar type represents true
or false
.
link GraphQL Schema definition
- scalar Boolean
link Require by
- AdditionalInfoFieldAdditionalInfoField is a single field of an AdditionalInfoFieldSet. This object is a template and it is being copied when creating a new Position in order to create PositionAdditionalInfoFIeld
- ApplicantApplicant
- ApplicationApplication is the representation of a candidate inside a Position.
- ApplicationNoteApplicationNote are notes created by a User or an external user about the specific Application. They may be public or private.
- ApplicationProcessAuth process launched for single application
- ApplicationProcessStepSingle steps in auth process for application
- ApplicationQuestionInputApplicationQuestionInput is the answer chosen by the Application in the application process based on the PositionQuestion
- External RecruiterRecruiter invited to a specific source
- FieldA Field is a single field of a FieldSet. This object is a template and it is being copied when creating a new Position in order to create PositionField
- FieldSetA FieldSet is a bundle of Field. In nCore they are also called "Dataset" and they may also be internal (not compiled by the candidate). This object is a template and it is being used when creating a new Position in order to create PositionFieldSet
- Mutationnull
- NodeA Node is a representation of a non-binary tree. Except for the root Node, every Node must have a parent and can have multiple children
- PipelineFolderA PipelineFolder is a single step of the funned defined by Pipeline. The PipelineFolder object is a template and when creating a new Position, the value is being copied to create a PositionPipelineFolder
- PositionA Position is the representation of a job vacancy in nCore. It MUST be associated with a Node and it may contains multiple Application
- PositionAdditionalInfoFieldSingle field for a specific position
- PositionFieldField used in the position
- PositionFieldSetField Sets used in the position
- PositionPipelieFolderPipeline folders used in the position. These represent the steps in the pipeline for a specific position
- PositionQuestionQuestions asked in the specific position
- PositionQuestionOptionOptions for the position questions
- PositionTemplateTemplates used for the creation of job positions
- Querynull
- SharingA Sharing is an object that has a unique URL that allows tracking of an Application. It contains also the number of landings and conversions. Typically it is being created to be shared with an external platform.
- UserA User is the representation of an nCore user. Every User is assigned to a root Node.
- __DirectiveA Directive provides a way to describe alternate runtime execution and type validation behavior in a GraphQL document. In some cases, you need to provide options to alter GraphQL's execution behavior in ways field arguments will not suffice, such as conditionally including or skipping a field. Directives provide this by describing additional information to the executor.
- __EnumValueOne possible value for a given Enum. Enum values are unique values, not a placeholder for a string or numeric value. However an Enum value is returned in a JSON response as a string.
- __FieldObject and Interface types are described by a list of Fields, each of which has a name, potentially a list of arguments, and a return type.
- __TypeThe fundamental unit of any GraphQL Schema is the type. There are many kinds of types in GraphQL as represented by the `__TypeKind` enum. Depending on the kind of a type, certain fields describe information about that type. Scalar types provide no information beyond a name and description, while Enum types provide their values. Object and Interface types provide the fields they describe. Abstract types, Union and Interface, provide the Object types possible at runtime. List and NonNull types compose other types.