A WordPress plugin that Adds Ninja Forms functionality to WPGraphQL schema.
WARNING: this plugin is under development and it's not production ready!
- Install and activate WPGraphQL wordpress plugin
- Install and activate Ninja Forms wordpress plugin
- Clone or download the zip of this repository into your WordPress plugin directory and activate WPGraphQL Ninja Forms
- Query forms with their related fields
- Submit one or multiple form entries using mutations
{
form(id: "1", idType: DATABASE_ID) {
title,
fields {
nodes {
fieldId
label
type
}
}
}
}
{
submitForm(input: {formId: 1, data: [
{id: 1, value: "Julius"},
{id: 2, value: "julius@test.com"},
{id: 3, value: "Hello there"}
]}) {
errors {
fieldId
message
slug
}
message
success
}
}