├── .editorconfig ├── CHANGELOG.md ├── LICENSE ├── README.md ├── activation.php ├── assets ├── banner-1544x500.png ├── banner-772x250.png ├── icon-128x128.png ├── icon-256x256.png └── screenshot-1.png ├── composer.json ├── deactivation.php ├── readme.txt ├── src ├── Autoloader.php ├── Connection │ ├── AbstractConnection.php │ ├── EntriesConnection.php │ ├── FormFieldsConnection.php │ └── FormsConnection.php ├── CoreSchemaFilters.php ├── Data │ ├── Connection │ │ ├── EntriesConnectionResolver.php │ │ ├── FormFieldsConnectionResolver.php │ │ └── FormsConnectionResolver.php │ ├── EntryObjectMutation.php │ ├── Factory.php │ ├── FieldValueInput │ │ ├── AbstractFieldValueInput.php │ │ ├── AddressValuesInput.php │ │ ├── CaptchaValueInput.php │ │ ├── CheckboxValuesInput.php │ │ ├── ConsentValueInput.php │ │ ├── EmailValuesInput.php │ │ ├── FileUploadValuesInput.php │ │ ├── ImageValuesInput.php │ │ ├── ListValuesInput.php │ │ ├── NameValuesInput.php │ │ ├── ProductValueInput.php │ │ ├── RadioValueInput.php │ │ ├── ValueInput.php │ │ └── ValuesInput.php │ └── Loader │ │ ├── DraftEntriesLoader.php │ │ ├── EntriesLoader.php │ │ ├── FormFieldsLoader.php │ │ └── FormsLoader.php ├── Extensions │ ├── Extensions.php │ ├── GFChainedSelects │ │ ├── Data │ │ │ └── FieldValueInput │ │ │ │ └── ChainedSelectValuesInput.php │ │ ├── GFChainedSelects.php │ │ └── Type │ │ │ ├── Enum │ │ │ └── ChainedSelectFieldAlignmentEnum.php │ │ │ ├── Input │ │ │ └── ChainedSelectFieldInput.php │ │ │ ├── WPInterface │ │ │ ├── FieldChoiceSetting │ │ │ │ └── ChoiceWithChainedChoices.php │ │ │ ├── FieldInputSetting │ │ │ │ └── InputWithChainedChoices.php │ │ │ └── FieldSetting │ │ │ │ ├── FieldWithChainedChoices.php │ │ │ │ ├── FieldWithChainedSelectsAlignment.php │ │ │ │ └── FieldWithChainedSelectsHideInactive.php │ │ │ └── WPObject │ │ │ └── FormField │ │ │ └── FieldValue │ │ │ └── ValueProperty.php │ ├── GFQuiz │ │ ├── GFQuiz.php │ │ └── Type │ │ │ ├── Enum │ │ │ ├── QuizFieldGradingTypeEnum.php │ │ │ └── QuizFieldTypeEnum.php │ │ │ ├── WPInterface │ │ │ ├── FieldChoiceSetting │ │ │ │ └── ChoiceWithQuizChoices.php │ │ │ └── FieldSetting │ │ │ │ ├── FieldWithQuizChoices.php │ │ │ │ ├── FieldWithQuizQuestion.php │ │ │ │ ├── FieldWithQuizRandomizeQuizChoices.php │ │ │ │ └── FieldWithQuizShowAnswerExplanation.php │ │ │ └── WPObject │ │ │ ├── Entry │ │ │ └── EntryQuizResults.php │ │ │ ├── Form │ │ │ ├── FormQuiz.php │ │ │ ├── FormQuizConfirmation.php │ │ │ └── FormQuizGrades.php │ │ │ └── QuizResults │ │ │ ├── QuizResults.php │ │ │ ├── QuizResultsChoiceCount.php │ │ │ ├── QuizResultsFieldCount.php │ │ │ ├── QuizResultsGradeCount.php │ │ │ └── QuizResultsScoreCount.php │ ├── GFSignature │ │ ├── Data │ │ │ └── FieldValueInput │ │ │ │ └── SignatureValuesInput.php │ │ ├── GFSignature.php │ │ └── Type │ │ │ ├── Enum │ │ │ ├── SignatureFieldBorderStyleEnum.php │ │ │ └── SignatureFieldBorderWidthEnum.php │ │ │ └── WPInterface │ │ │ └── FieldSetting │ │ │ ├── FieldWithBackgroundColor.php │ │ │ ├── FieldWithBorderColor.php │ │ │ ├── FieldWithBorderStyle.php │ │ │ ├── FieldWithBorderWidth.php │ │ │ ├── FieldWithBoxWidth.php │ │ │ ├── FieldWithPenColor.php │ │ │ └── FieldWithPenSize.php │ ├── WPGatsby │ │ ├── GravityFormsMonitor.php │ │ ├── Settings.php │ │ └── WPGatsby.php │ ├── WPGraphQLContentBlocks │ │ └── WPGraphQLContentBlocks.php │ └── WPJamstackDeployments │ │ └── WPJamstackDeployments.php ├── GF.php ├── Interfaces │ ├── Enum.php │ ├── Field.php │ ├── Hookable.php │ ├── Mutation.php │ ├── Registrable.php │ ├── TypeWithConnections.php │ ├── TypeWithDescription.php │ ├── TypeWithFields.php │ ├── TypeWithInputFields.php │ └── TypeWithInterfaces.php ├── Model │ ├── DraftEntry.php │ ├── Form.php │ ├── FormField.php │ └── SubmittedEntry.php ├── Mutation │ ├── AbstractMutation.php │ ├── DeleteDraftEntry.php │ ├── DeleteEntry.php │ ├── SubmitDraftEntry.php │ ├── SubmitForm.php │ ├── UpdateDraftEntry.php │ └── UpdateEntry.php ├── Registry │ ├── FieldChoiceRegistry.php │ ├── FieldInputRegistry.php │ ├── FormFieldRegistry.php │ └── TypeRegistry.php ├── Type │ ├── AbstractType.php │ ├── Enum │ │ ├── AbstractEnum.php │ │ ├── AddressFieldCountryEnum.php │ │ ├── AddressFieldProvinceEnum.php │ │ ├── AddressFieldStateEnum.php │ │ ├── AddressFieldTypeEnum.php │ │ ├── AmPmEnum.php │ │ ├── CaptchaFieldBadgePositionEnum.php │ │ ├── CaptchaFieldThemeEnum.php │ │ ├── CaptchaFieldTypeEnum.php │ │ ├── ConditionalLogicActionTypeEnum.php │ │ ├── ConditionalLogicLogicTypeEnum.php │ │ ├── CurrencyEnum.php │ │ ├── DateFieldFormatEnum.php │ │ ├── DateFieldTypeEnum.php │ │ ├── DraftEntryIdTypeEnum.php │ │ ├── EntryIdTypeEnum.php │ │ ├── EntryStatusEnum.php │ │ ├── EntryTypeEnum.php │ │ ├── FieldFiltersModeEnum.php │ │ ├── FieldFiltersOperatorInputEnum.php │ │ ├── FormButtonTypeEnum.php │ │ ├── FormConfirmationTypeEnum.php │ │ ├── FormCreditCardTypeEnum.php │ │ ├── FormDescriptionPlacementEnum.php │ │ ├── FormFieldCalendarIconTypeEnum.php │ │ ├── FormFieldDescriptionPlacementEnum.php │ │ ├── FormFieldLabelPlacementEnum.php │ │ ├── FormFieldRequiredIndicatorEnum.php │ │ ├── FormFieldSizeEnum.php │ │ ├── FormFieldSubLabelPlacementEnum.php │ │ ├── FormFieldTypeEnum.php │ │ ├── FormFieldVisibilityEnum.php │ │ ├── FormIdTypeEnum.php │ │ ├── FormLabelPlacementEnum.php │ │ ├── FormLimitEntriesPeriodEnum.php │ │ ├── FormNotificationToTypeEnum.php │ │ ├── FormPageProgressStyleEnum.php │ │ ├── FormPageProgressTypeEnum.php │ │ ├── FormRetentionPolicyEnum.php │ │ ├── FormRuleOperatorEnum.php │ │ ├── FormStatusEnum.php │ │ ├── FormSubLabelPlacementEnum.php │ │ ├── FormSubmitButtonLocationEnum.php │ │ ├── FormSubmitButtonWidthEnum.php │ │ ├── FormsConnectionOrderByEnum.php │ │ ├── NumberFieldFormatEnum.php │ │ ├── PasswordFieldMinStrengthEnum.php │ │ ├── PhoneFieldFormatEnum.php │ │ ├── PostFormatTypeEnum.php │ │ ├── RecaptchaTypeEnum.php │ │ ├── SubmissionConfirmationTypeEnum.php │ │ ├── SubmittedEntryIdTypeEnum.php │ │ └── TimeFieldFormatEnum.php │ ├── Input │ │ ├── AbstractInput.php │ │ ├── AddressFieldInput.php │ │ ├── CheckboxFieldInput.php │ │ ├── CreditCardFieldInput.php │ │ ├── EmailFieldInput.php │ │ ├── EntriesConnectionOrderbyInput.php │ │ ├── EntriesDateFiltersInput.php │ │ ├── EntriesFieldFiltersInput.php │ │ ├── FormFieldValuesInput.php │ │ ├── FormsConnectionOrderbyInput.php │ │ ├── ListFieldInput.php │ │ ├── NameFieldInput.php │ │ ├── PostImageFieldInput.php │ │ ├── ProductFieldInput.php │ │ ├── SubmitFormMetaInput.php │ │ ├── UpdateDraftEntryMetaInput.php │ │ └── UpdateEntryMetaInput.php │ ├── WPInterface │ │ ├── AbstractInterface.php │ │ ├── Entry.php │ │ ├── FieldChoice.php │ │ ├── FieldChoiceSetting │ │ │ ├── AbstractFieldChoiceSetting.php │ │ │ ├── ChoiceWithChoices.php │ │ │ ├── ChoiceWithColumns.php │ │ │ ├── ChoiceWithName.php │ │ │ └── ChoiceWithOtherChoice.php │ │ ├── FieldInput.php │ │ ├── FieldInputSetting │ │ │ ├── AbstractFieldInputSetting.php │ │ │ ├── InputWithAddress.php │ │ │ ├── InputWithDateFormat.php │ │ │ ├── InputWithEmailConfirmation.php │ │ │ ├── InputWithName.php │ │ │ ├── InputWithPassword.php │ │ │ ├── InputWithSelectAllChoices.php │ │ │ ├── InputWithSingleProduct.php │ │ │ └── InputWithTimeFormat.php │ │ ├── FieldSetting │ │ │ ├── AbstractFieldSetting.php │ │ │ ├── FieldWithAddIconUrl.php │ │ │ ├── FieldWithAddress.php │ │ │ ├── FieldWithAdminLabel.php │ │ │ ├── FieldWithAutocomplete.php │ │ │ ├── FieldWithBasePrice.php │ │ │ ├── FieldWithCalculation.php │ │ │ ├── FieldWithCaptchaBackground.php │ │ │ ├── FieldWithCaptchaBadge.php │ │ │ ├── FieldWithCaptchaForeground.php │ │ │ ├── FieldWithCaptchaLanguage.php │ │ │ ├── FieldWithCaptchaSize.php │ │ │ ├── FieldWithCaptchaTheme.php │ │ │ ├── FieldWithCaptchaType.php │ │ │ ├── FieldWithCheckboxLabel.php │ │ │ ├── FieldWithChoices.php │ │ │ ├── FieldWithColumns.php │ │ │ ├── FieldWithConditionalLogic.php │ │ │ ├── FieldWithContent.php │ │ │ ├── FieldWithCopyValuesOption.php │ │ │ ├── FieldWithCreditCard.php │ │ │ ├── FieldWithCssClass.php │ │ │ ├── FieldWithDateFormat.php │ │ │ ├── FieldWithDateInputType.php │ │ │ ├── FieldWithDefaultValue.php │ │ │ ├── FieldWithDeleteIconUrl.php │ │ │ ├── FieldWithDescription.php │ │ │ ├── FieldWithDisableMargins.php │ │ │ ├── FieldWithDisableQuantity.php │ │ │ ├── FieldWithDuplicates.php │ │ │ ├── FieldWithEmailConfirmation.php │ │ │ ├── FieldWithEnhancedUI.php │ │ │ ├── FieldWithErrorMessage.php │ │ │ ├── FieldWithFileExtensions.php │ │ │ ├── FieldWithFileSize.php │ │ │ ├── FieldWithForceSSLField.php │ │ │ ├── FieldWithInputMask.php │ │ │ ├── FieldWithLabel.php │ │ │ ├── FieldWithLabelPlacement.php │ │ │ ├── FieldWithMaxLength.php │ │ │ ├── FieldWithMaxRows.php │ │ │ ├── FieldWithMultipleFiles.php │ │ │ ├── FieldWithName.php │ │ │ ├── FieldWithNextButton.php │ │ │ ├── FieldWithNumberFormat.php │ │ │ ├── FieldWithOtherChoice.php │ │ │ ├── FieldWithPassword.php │ │ │ ├── FieldWithPasswordField.php │ │ │ ├── FieldWithPasswordStrength.php │ │ │ ├── FieldWithPasswordVisibility.php │ │ │ ├── FieldWithPhoneFormat.php │ │ │ ├── FieldWithPlaceholder.php │ │ │ ├── FieldWithPostCategoryCheckbox.php │ │ │ ├── FieldWithPostCategoryInitialItem.php │ │ │ ├── FieldWithPostCustomField.php │ │ │ ├── FieldWithPostImage.php │ │ │ ├── FieldWithPostImageFeaturedImage.php │ │ │ ├── FieldWithPrepopulateField.php │ │ │ ├── FieldWithPreviousButton.php │ │ │ ├── FieldWithProductField.php │ │ │ ├── FieldWithRange.php │ │ │ ├── FieldWithRichTextEditor.php │ │ │ ├── FieldWithRules.php │ │ │ ├── FieldWithSelectAllChoices.php │ │ │ ├── FieldWithSingleProductInputs.php │ │ │ ├── FieldWithSize.php │ │ │ ├── FieldWithSubLabelPlacement.php │ │ │ └── FieldWithTimeFormat.php │ │ ├── FieldValue │ │ │ ├── FieldValueWithChoice.php │ │ │ └── FieldValueWithInput.php │ │ ├── FieldWithChoices.php │ │ ├── FieldWithInputs.php │ │ ├── FieldWithPersonalData.php │ │ ├── FormField.php │ │ └── NodeWithForm.php │ └── WPObject │ │ ├── AbstractObject.php │ │ ├── Button │ │ ├── FormButton.php │ │ └── FormLastPageButton.php │ │ ├── ConditionalLogic │ │ ├── ConditionalLogic.php │ │ └── ConditionalLogicRule.php │ │ ├── Entry │ │ ├── DraftEntry.php │ │ └── SubmittedEntry.php │ │ ├── FieldError.php │ │ ├── Form │ │ ├── Form.php │ │ ├── FormConfirmation.php │ │ ├── FormDataPolicies.php │ │ ├── FormEntryDataPolicy.php │ │ ├── FormEntryLimits.php │ │ ├── FormLogin.php │ │ ├── FormNotification.php │ │ ├── FormNotificationRouting.php │ │ ├── FormPagination.php │ │ ├── FormPersonalData.php │ │ ├── FormPostCreation.php │ │ ├── FormSaveAndContinue.php │ │ ├── FormSchedule.php │ │ ├── FormScheduleDetails.php │ │ └── FormSubmitButton.php │ │ ├── FormField │ │ ├── FieldValue │ │ │ ├── FieldValues.php │ │ │ └── ValueProperty │ │ │ │ ├── AddressFieldValue.php │ │ │ │ ├── CheckboxFieldValue.php │ │ │ │ ├── FileUploadFieldValue.php │ │ │ │ ├── ImageFieldValue.php │ │ │ │ ├── ListFieldValue.php │ │ │ │ ├── NameFieldValue.php │ │ │ │ ├── ProductFieldValue.php │ │ │ │ └── TimeFieldValue.php │ │ ├── FormFieldDataPolicy.php │ │ └── FormFields.php │ │ ├── Order │ │ ├── OrderItem.php │ │ ├── OrderItemOption.php │ │ └── OrderSummary.php │ │ ├── Settings │ │ ├── Logger.php │ │ ├── Settings.php │ │ ├── SettingsLogging.php │ │ └── SettingsRecaptcha.php │ │ └── SubmissionConfirmation.php ├── UpdateChecker.php └── Utils │ ├── Compat.php │ ├── GFUtils.php │ └── Utils.php └── wp-graphql-gravity-forms.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/.editorconfig -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/README.md -------------------------------------------------------------------------------- /activation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/activation.php -------------------------------------------------------------------------------- /assets/banner-1544x500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/assets/banner-1544x500.png -------------------------------------------------------------------------------- /assets/banner-772x250.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/assets/banner-772x250.png -------------------------------------------------------------------------------- /assets/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/assets/icon-128x128.png -------------------------------------------------------------------------------- /assets/icon-256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/assets/icon-256x256.png -------------------------------------------------------------------------------- /assets/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/assets/screenshot-1.png -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/composer.json -------------------------------------------------------------------------------- /deactivation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/deactivation.php -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/readme.txt -------------------------------------------------------------------------------- /src/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Autoloader.php -------------------------------------------------------------------------------- /src/Connection/AbstractConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Connection/AbstractConnection.php -------------------------------------------------------------------------------- /src/Connection/EntriesConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Connection/EntriesConnection.php -------------------------------------------------------------------------------- /src/Connection/FormFieldsConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Connection/FormFieldsConnection.php -------------------------------------------------------------------------------- /src/Connection/FormsConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Connection/FormsConnection.php -------------------------------------------------------------------------------- /src/CoreSchemaFilters.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/CoreSchemaFilters.php -------------------------------------------------------------------------------- /src/Data/Connection/EntriesConnectionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Connection/EntriesConnectionResolver.php -------------------------------------------------------------------------------- /src/Data/Connection/FormFieldsConnectionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Connection/FormFieldsConnectionResolver.php -------------------------------------------------------------------------------- /src/Data/Connection/FormsConnectionResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Connection/FormsConnectionResolver.php -------------------------------------------------------------------------------- /src/Data/EntryObjectMutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/EntryObjectMutation.php -------------------------------------------------------------------------------- /src/Data/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Factory.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/AbstractFieldValueInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/AbstractFieldValueInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/AddressValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/AddressValuesInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/CaptchaValueInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/CaptchaValueInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/CheckboxValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/CheckboxValuesInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/ConsentValueInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/ConsentValueInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/EmailValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/EmailValuesInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/FileUploadValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/FileUploadValuesInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/ImageValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/ImageValuesInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/ListValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/ListValuesInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/NameValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/NameValuesInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/ProductValueInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/ProductValueInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/RadioValueInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/RadioValueInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/ValueInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/ValueInput.php -------------------------------------------------------------------------------- /src/Data/FieldValueInput/ValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/FieldValueInput/ValuesInput.php -------------------------------------------------------------------------------- /src/Data/Loader/DraftEntriesLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Loader/DraftEntriesLoader.php -------------------------------------------------------------------------------- /src/Data/Loader/EntriesLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Loader/EntriesLoader.php -------------------------------------------------------------------------------- /src/Data/Loader/FormFieldsLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Loader/FormFieldsLoader.php -------------------------------------------------------------------------------- /src/Data/Loader/FormsLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Data/Loader/FormsLoader.php -------------------------------------------------------------------------------- /src/Extensions/Extensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/Extensions.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Data/FieldValueInput/ChainedSelectValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Data/FieldValueInput/ChainedSelectValuesInput.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/GFChainedSelects.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/GFChainedSelects.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/Enum/ChainedSelectFieldAlignmentEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/Enum/ChainedSelectFieldAlignmentEnum.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/Input/ChainedSelectFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/Input/ChainedSelectFieldInput.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/WPInterface/FieldChoiceSetting/ChoiceWithChainedChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/WPInterface/FieldChoiceSetting/ChoiceWithChainedChoices.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/WPInterface/FieldInputSetting/InputWithChainedChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/WPInterface/FieldInputSetting/InputWithChainedChoices.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/WPInterface/FieldSetting/FieldWithChainedChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/WPInterface/FieldSetting/FieldWithChainedChoices.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/WPInterface/FieldSetting/FieldWithChainedSelectsAlignment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/WPInterface/FieldSetting/FieldWithChainedSelectsAlignment.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/WPInterface/FieldSetting/FieldWithChainedSelectsHideInactive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/WPInterface/FieldSetting/FieldWithChainedSelectsHideInactive.php -------------------------------------------------------------------------------- /src/Extensions/GFChainedSelects/Type/WPObject/FormField/FieldValue/ValueProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFChainedSelects/Type/WPObject/FormField/FieldValue/ValueProperty.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/GFQuiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/GFQuiz.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/Enum/QuizFieldGradingTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/Enum/QuizFieldGradingTypeEnum.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/Enum/QuizFieldTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/Enum/QuizFieldTypeEnum.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPInterface/FieldChoiceSetting/ChoiceWithQuizChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPInterface/FieldChoiceSetting/ChoiceWithQuizChoices.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizChoices.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizQuestion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizQuestion.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizRandomizeQuizChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizRandomizeQuizChoices.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizShowAnswerExplanation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPInterface/FieldSetting/FieldWithQuizShowAnswerExplanation.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/Entry/EntryQuizResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/Entry/EntryQuizResults.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/Form/FormQuiz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/Form/FormQuiz.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/Form/FormQuizConfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/Form/FormQuizConfirmation.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/Form/FormQuizGrades.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/Form/FormQuizGrades.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResults.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsChoiceCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsChoiceCount.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsFieldCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsFieldCount.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsGradeCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsGradeCount.php -------------------------------------------------------------------------------- /src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsScoreCount.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFQuiz/Type/WPObject/QuizResults/QuizResultsScoreCount.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Data/FieldValueInput/SignatureValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Data/FieldValueInput/SignatureValuesInput.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/GFSignature.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/GFSignature.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/Enum/SignatureFieldBorderStyleEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/Enum/SignatureFieldBorderStyleEnum.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/Enum/SignatureFieldBorderWidthEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/Enum/SignatureFieldBorderWidthEnum.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBackgroundColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBackgroundColor.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBorderColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBorderColor.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBorderStyle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBorderStyle.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBorderWidth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBorderWidth.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBoxWidth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithBoxWidth.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithPenColor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithPenColor.php -------------------------------------------------------------------------------- /src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithPenSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/GFSignature/Type/WPInterface/FieldSetting/FieldWithPenSize.php -------------------------------------------------------------------------------- /src/Extensions/WPGatsby/GravityFormsMonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/WPGatsby/GravityFormsMonitor.php -------------------------------------------------------------------------------- /src/Extensions/WPGatsby/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/WPGatsby/Settings.php -------------------------------------------------------------------------------- /src/Extensions/WPGatsby/WPGatsby.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/WPGatsby/WPGatsby.php -------------------------------------------------------------------------------- /src/Extensions/WPGraphQLContentBlocks/WPGraphQLContentBlocks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/WPGraphQLContentBlocks/WPGraphQLContentBlocks.php -------------------------------------------------------------------------------- /src/Extensions/WPJamstackDeployments/WPJamstackDeployments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Extensions/WPJamstackDeployments/WPJamstackDeployments.php -------------------------------------------------------------------------------- /src/GF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/GF.php -------------------------------------------------------------------------------- /src/Interfaces/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/Enum.php -------------------------------------------------------------------------------- /src/Interfaces/Field.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/Field.php -------------------------------------------------------------------------------- /src/Interfaces/Hookable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/Hookable.php -------------------------------------------------------------------------------- /src/Interfaces/Mutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/Mutation.php -------------------------------------------------------------------------------- /src/Interfaces/Registrable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/Registrable.php -------------------------------------------------------------------------------- /src/Interfaces/TypeWithConnections.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/TypeWithConnections.php -------------------------------------------------------------------------------- /src/Interfaces/TypeWithDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/TypeWithDescription.php -------------------------------------------------------------------------------- /src/Interfaces/TypeWithFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/TypeWithFields.php -------------------------------------------------------------------------------- /src/Interfaces/TypeWithInputFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/TypeWithInputFields.php -------------------------------------------------------------------------------- /src/Interfaces/TypeWithInterfaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Interfaces/TypeWithInterfaces.php -------------------------------------------------------------------------------- /src/Model/DraftEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Model/DraftEntry.php -------------------------------------------------------------------------------- /src/Model/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Model/Form.php -------------------------------------------------------------------------------- /src/Model/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Model/FormField.php -------------------------------------------------------------------------------- /src/Model/SubmittedEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Model/SubmittedEntry.php -------------------------------------------------------------------------------- /src/Mutation/AbstractMutation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Mutation/AbstractMutation.php -------------------------------------------------------------------------------- /src/Mutation/DeleteDraftEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Mutation/DeleteDraftEntry.php -------------------------------------------------------------------------------- /src/Mutation/DeleteEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Mutation/DeleteEntry.php -------------------------------------------------------------------------------- /src/Mutation/SubmitDraftEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Mutation/SubmitDraftEntry.php -------------------------------------------------------------------------------- /src/Mutation/SubmitForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Mutation/SubmitForm.php -------------------------------------------------------------------------------- /src/Mutation/UpdateDraftEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Mutation/UpdateDraftEntry.php -------------------------------------------------------------------------------- /src/Mutation/UpdateEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Mutation/UpdateEntry.php -------------------------------------------------------------------------------- /src/Registry/FieldChoiceRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Registry/FieldChoiceRegistry.php -------------------------------------------------------------------------------- /src/Registry/FieldInputRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Registry/FieldInputRegistry.php -------------------------------------------------------------------------------- /src/Registry/FormFieldRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Registry/FormFieldRegistry.php -------------------------------------------------------------------------------- /src/Registry/TypeRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Registry/TypeRegistry.php -------------------------------------------------------------------------------- /src/Type/AbstractType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/AbstractType.php -------------------------------------------------------------------------------- /src/Type/Enum/AbstractEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/AbstractEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/AddressFieldCountryEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/AddressFieldCountryEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/AddressFieldProvinceEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/AddressFieldProvinceEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/AddressFieldStateEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/AddressFieldStateEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/AddressFieldTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/AddressFieldTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/AmPmEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/AmPmEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/CaptchaFieldBadgePositionEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/CaptchaFieldBadgePositionEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/CaptchaFieldThemeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/CaptchaFieldThemeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/CaptchaFieldTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/CaptchaFieldTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/ConditionalLogicActionTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/ConditionalLogicActionTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/ConditionalLogicLogicTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/ConditionalLogicLogicTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/CurrencyEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/CurrencyEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/DateFieldFormatEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/DateFieldFormatEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/DateFieldTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/DateFieldTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/DraftEntryIdTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/DraftEntryIdTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/EntryIdTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/EntryIdTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/EntryStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/EntryStatusEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/EntryTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/EntryTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FieldFiltersModeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FieldFiltersModeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FieldFiltersOperatorInputEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FieldFiltersOperatorInputEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormButtonTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormButtonTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormConfirmationTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormConfirmationTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormCreditCardTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormCreditCardTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormDescriptionPlacementEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormDescriptionPlacementEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldCalendarIconTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldCalendarIconTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldDescriptionPlacementEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldDescriptionPlacementEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldLabelPlacementEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldLabelPlacementEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldRequiredIndicatorEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldRequiredIndicatorEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldSizeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldSizeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldSubLabelPlacementEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldSubLabelPlacementEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormFieldVisibilityEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormFieldVisibilityEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormIdTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormIdTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormLabelPlacementEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormLabelPlacementEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormLimitEntriesPeriodEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormLimitEntriesPeriodEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormNotificationToTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormNotificationToTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormPageProgressStyleEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormPageProgressStyleEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormPageProgressTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormPageProgressTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormRetentionPolicyEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormRetentionPolicyEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormRuleOperatorEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormRuleOperatorEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormStatusEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormStatusEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormSubLabelPlacementEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormSubLabelPlacementEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormSubmitButtonLocationEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormSubmitButtonLocationEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormSubmitButtonWidthEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormSubmitButtonWidthEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/FormsConnectionOrderByEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/FormsConnectionOrderByEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/NumberFieldFormatEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/NumberFieldFormatEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/PasswordFieldMinStrengthEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/PasswordFieldMinStrengthEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/PhoneFieldFormatEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/PhoneFieldFormatEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/PostFormatTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/PostFormatTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/RecaptchaTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/RecaptchaTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/SubmissionConfirmationTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/SubmissionConfirmationTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/SubmittedEntryIdTypeEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/SubmittedEntryIdTypeEnum.php -------------------------------------------------------------------------------- /src/Type/Enum/TimeFieldFormatEnum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Enum/TimeFieldFormatEnum.php -------------------------------------------------------------------------------- /src/Type/Input/AbstractInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/AbstractInput.php -------------------------------------------------------------------------------- /src/Type/Input/AddressFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/AddressFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/CheckboxFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/CheckboxFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/CreditCardFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/CreditCardFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/EmailFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/EmailFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/EntriesConnectionOrderbyInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/EntriesConnectionOrderbyInput.php -------------------------------------------------------------------------------- /src/Type/Input/EntriesDateFiltersInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/EntriesDateFiltersInput.php -------------------------------------------------------------------------------- /src/Type/Input/EntriesFieldFiltersInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/EntriesFieldFiltersInput.php -------------------------------------------------------------------------------- /src/Type/Input/FormFieldValuesInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/FormFieldValuesInput.php -------------------------------------------------------------------------------- /src/Type/Input/FormsConnectionOrderbyInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/FormsConnectionOrderbyInput.php -------------------------------------------------------------------------------- /src/Type/Input/ListFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/ListFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/NameFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/NameFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/PostImageFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/PostImageFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/ProductFieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/ProductFieldInput.php -------------------------------------------------------------------------------- /src/Type/Input/SubmitFormMetaInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/SubmitFormMetaInput.php -------------------------------------------------------------------------------- /src/Type/Input/UpdateDraftEntryMetaInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/UpdateDraftEntryMetaInput.php -------------------------------------------------------------------------------- /src/Type/Input/UpdateEntryMetaInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/Input/UpdateEntryMetaInput.php -------------------------------------------------------------------------------- /src/Type/WPInterface/AbstractInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/AbstractInterface.php -------------------------------------------------------------------------------- /src/Type/WPInterface/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/Entry.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldChoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldChoice.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldChoiceSetting/AbstractFieldChoiceSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldChoiceSetting/AbstractFieldChoiceSetting.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldChoiceSetting/ChoiceWithChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldChoiceSetting/ChoiceWithChoices.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldChoiceSetting/ChoiceWithColumns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldChoiceSetting/ChoiceWithColumns.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldChoiceSetting/ChoiceWithName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldChoiceSetting/ChoiceWithName.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldChoiceSetting/ChoiceWithOtherChoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldChoiceSetting/ChoiceWithOtherChoice.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInput.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/AbstractFieldInputSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/AbstractFieldInputSetting.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithAddress.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithDateFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithDateFormat.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithEmailConfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithEmailConfirmation.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithName.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithPassword.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithSelectAllChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithSelectAllChoices.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithSingleProduct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithSingleProduct.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldInputSetting/InputWithTimeFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldInputSetting/InputWithTimeFormat.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/AbstractFieldSetting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/AbstractFieldSetting.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithAddIconUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithAddIconUrl.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithAddress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithAddress.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithAdminLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithAdminLabel.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithAutocomplete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithAutocomplete.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithBasePrice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithBasePrice.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCalculation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCalculation.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCaptchaBackground.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCaptchaBackground.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCaptchaBadge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCaptchaBadge.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCaptchaForeground.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCaptchaForeground.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCaptchaLanguage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCaptchaLanguage.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCaptchaSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCaptchaSize.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCaptchaTheme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCaptchaTheme.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCaptchaType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCaptchaType.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCheckboxLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCheckboxLabel.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithChoices.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithColumns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithColumns.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithConditionalLogic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithConditionalLogic.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithContent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithContent.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCopyValuesOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCopyValuesOption.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCreditCard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCreditCard.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithCssClass.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithCssClass.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDateFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDateFormat.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDateInputType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDateInputType.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDefaultValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDefaultValue.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDeleteIconUrl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDeleteIconUrl.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDescription.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDescription.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDisableMargins.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDisableMargins.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDisableQuantity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDisableQuantity.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithDuplicates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithDuplicates.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithEmailConfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithEmailConfirmation.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithEnhancedUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithEnhancedUI.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithErrorMessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithErrorMessage.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithFileExtensions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithFileExtensions.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithFileSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithFileSize.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithForceSSLField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithForceSSLField.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithInputMask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithInputMask.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithLabel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithLabel.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithLabelPlacement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithLabelPlacement.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithMaxLength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithMaxLength.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithMaxRows.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithMaxRows.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithMultipleFiles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithMultipleFiles.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithName.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithNextButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithNextButton.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithNumberFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithNumberFormat.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithOtherChoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithOtherChoice.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPassword.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPassword.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPasswordField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPasswordField.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPasswordStrength.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPasswordStrength.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPasswordVisibility.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPasswordVisibility.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPhoneFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPhoneFormat.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPlaceholder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPlaceholder.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPostCategoryCheckbox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPostCategoryCheckbox.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPostCategoryInitialItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPostCategoryInitialItem.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPostCustomField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPostCustomField.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPostImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPostImage.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPostImageFeaturedImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPostImageFeaturedImage.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPrepopulateField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPrepopulateField.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithPreviousButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithPreviousButton.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithProductField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithProductField.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithRange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithRange.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithRichTextEditor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithRichTextEditor.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithRules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithRules.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithSelectAllChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithSelectAllChoices.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithSingleProductInputs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithSingleProductInputs.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithSize.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithSubLabelPlacement.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithSubLabelPlacement.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldSetting/FieldWithTimeFormat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldSetting/FieldWithTimeFormat.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldValue/FieldValueWithChoice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldValue/FieldValueWithChoice.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldValue/FieldValueWithInput.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldValue/FieldValueWithInput.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldWithChoices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldWithChoices.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldWithInputs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldWithInputs.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FieldWithPersonalData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FieldWithPersonalData.php -------------------------------------------------------------------------------- /src/Type/WPInterface/FormField.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/FormField.php -------------------------------------------------------------------------------- /src/Type/WPInterface/NodeWithForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPInterface/NodeWithForm.php -------------------------------------------------------------------------------- /src/Type/WPObject/AbstractObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/AbstractObject.php -------------------------------------------------------------------------------- /src/Type/WPObject/Button/FormButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Button/FormButton.php -------------------------------------------------------------------------------- /src/Type/WPObject/Button/FormLastPageButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Button/FormLastPageButton.php -------------------------------------------------------------------------------- /src/Type/WPObject/ConditionalLogic/ConditionalLogic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/ConditionalLogic/ConditionalLogic.php -------------------------------------------------------------------------------- /src/Type/WPObject/ConditionalLogic/ConditionalLogicRule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/ConditionalLogic/ConditionalLogicRule.php -------------------------------------------------------------------------------- /src/Type/WPObject/Entry/DraftEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Entry/DraftEntry.php -------------------------------------------------------------------------------- /src/Type/WPObject/Entry/SubmittedEntry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Entry/SubmittedEntry.php -------------------------------------------------------------------------------- /src/Type/WPObject/FieldError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FieldError.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/Form.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormConfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormConfirmation.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormDataPolicies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormDataPolicies.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormEntryDataPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormEntryDataPolicy.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormEntryLimits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormEntryLimits.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormLogin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormLogin.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormNotification.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormNotification.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormNotificationRouting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormNotificationRouting.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormPagination.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormPagination.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormPersonalData.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormPersonalData.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormPostCreation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormPostCreation.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormSaveAndContinue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormSaveAndContinue.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormSchedule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormSchedule.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormScheduleDetails.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormScheduleDetails.php -------------------------------------------------------------------------------- /src/Type/WPObject/Form/FormSubmitButton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Form/FormSubmitButton.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/FieldValues.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/FieldValues.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/AddressFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/AddressFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/CheckboxFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/CheckboxFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/FileUploadFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/FileUploadFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/ImageFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/ImageFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/ListFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/ListFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/NameFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/NameFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/ProductFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/ProductFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FieldValue/ValueProperty/TimeFieldValue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FieldValue/ValueProperty/TimeFieldValue.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FormFieldDataPolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FormFieldDataPolicy.php -------------------------------------------------------------------------------- /src/Type/WPObject/FormField/FormFields.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/FormField/FormFields.php -------------------------------------------------------------------------------- /src/Type/WPObject/Order/OrderItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Order/OrderItem.php -------------------------------------------------------------------------------- /src/Type/WPObject/Order/OrderItemOption.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Order/OrderItemOption.php -------------------------------------------------------------------------------- /src/Type/WPObject/Order/OrderSummary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Order/OrderSummary.php -------------------------------------------------------------------------------- /src/Type/WPObject/Settings/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Settings/Logger.php -------------------------------------------------------------------------------- /src/Type/WPObject/Settings/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Settings/Settings.php -------------------------------------------------------------------------------- /src/Type/WPObject/Settings/SettingsLogging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Settings/SettingsLogging.php -------------------------------------------------------------------------------- /src/Type/WPObject/Settings/SettingsRecaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/Settings/SettingsRecaptcha.php -------------------------------------------------------------------------------- /src/Type/WPObject/SubmissionConfirmation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Type/WPObject/SubmissionConfirmation.php -------------------------------------------------------------------------------- /src/UpdateChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/UpdateChecker.php -------------------------------------------------------------------------------- /src/Utils/Compat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Utils/Compat.php -------------------------------------------------------------------------------- /src/Utils/GFUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Utils/GFUtils.php -------------------------------------------------------------------------------- /src/Utils/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/src/Utils/Utils.php -------------------------------------------------------------------------------- /wp-graphql-gravity-forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AxeWP/wp-graphql-gravity-forms/HEAD/wp-graphql-gravity-forms.php --------------------------------------------------------------------------------