Class DefaultGraphQL
- java.lang.Object
-
- com.atlassian.confluence.plugins.graphql.DefaultGraphQL
-
-
Constructor Summary
Constructors Constructor Description DefaultGraphQL()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Type
createDynamicType(String typeName, Map<String,Type> fieldTypes)
Create a DynamicType objectMap<String,Type>
getDynamicTypeFields(Type type)
Get a dynamic type's field names and the field typesboolean
isDynamicType(Type type)
Get whether a type is a 'dynamic type' where the fields are provided at runtime
-
-
-
Method Detail
-
isDynamicType
public boolean isDynamicType(Type type)
Description copied from interface:GraphQL
Get whether a type is a 'dynamic type' where the fields are provided at runtime- Specified by:
isDynamicType
in interfaceGraphQL
-
createDynamicType
public Type createDynamicType(String typeName, Map<String,Type> fieldTypes)
Description copied from interface:GraphQL
Create a DynamicType object- Specified by:
createDynamicType
in interfaceGraphQL
-
-