connector-graphql
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.camunda.connector</groupId> <artifactId>connector-graphql</artifactId> <version>8.8.0-alpha3.1</version> </dependency>
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.camunda.connector</groupId> <artifactId>connector-http-parent</artifactId> <version>8.8.0-alpha3.1</version> <relativePath>../pom.xml</relativePath> </parent> <name>connector-graphql</name> <description>Graphql connector for Camunda</description> <artifactId>connector-graphql</artifactId> <packaging>jar</packaging> <licenses> <license> <name>Camunda Self-Managed Free Edition license</name> <url>https://camunda.com/legal/terms/cloud-terms-and-conditions/camunda-cloud-self-managed-free-edition-terms/</url> </license> <license> <name>Camunda Self-Managed Enterprise Edition license</name> </license> </licenses> <dependencies> <dependency> <groupId>io.camunda.connector</groupId> <artifactId>connector-http-base</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpcore</artifactId> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-text</artifactId> </dependency> <dependency> <groupId>org.wiremock</groupId> <artifactId>wiremock-standalone</artifactId> <version>${version.wiremock}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>io.camunda.connector</groupId> <artifactId>element-template-generator-maven-plugin</artifactId> <version>${project.version}</version> <configuration> <connectors> <connector> <connectorClass>io.camunda.connector.http.graphql.GraphQLFunction</connectorClass> <files> <file> <templateId>io.camunda.connectors.GraphQL.v1</templateId> <templateFileName>graphql-outbound-connector.json</templateFileName> </file> </files> <generateHybridTemplates>true</generateHybridTemplates> </connector> </connectors> <includeDependencies> <includeDependency>io.camunda.connector:connector-http-base</includeDependency> </includeDependencies> </configuration> </plugin> </plugins> </build> </project>