Reputation: 321
I try to map a key string with arrays of Objects.
I can create a simple Object but i want to add easily an object in these arrays. The Map Object is perfect to do this.
Problem: I dont know how to define the Type Map for GraphQL :'(
@ObjectType()
export class Inventaire
@Field()
_id: string;
@Field()
stocks: Map<string, Article[]>;
}
Upvotes: 32
Views: 71909
Reputation:
GraphQL does not provide any kind of map type out of the box. A JSON blob of key-value pairs do not have a strong schema, so you can't have something like this:
{
key1: val1,
key2: val2,
key3: val3,
...
}
However, you can define a GraphQL Schema to have a key-value tuple type, and then define your property to return an array of those tuples.
type articleMapTuple {
key: String
value: Article
}
type Inventaire {
stocks: [articleMapTuple]
}
Then your return types would look something like this:
data [
{
key: foo1,
value: { some Article Object}
},
{
key: foo2,
value: { some Article Object}
},
{
key: foo3,
value: { some Article Object}
},
]
Upvotes: 39
Reputation: 55
GraphQL does not natively support Map type. You can create your own scalar for Map or use existing ObjectScalar defined in repo https://github.com/graphql-java/graphql-java-extended-scalars
import graphql.Assert;
import graphql.language.ArrayValue;
import graphql.language.BooleanValue;
import graphql.language.EnumValue;
import graphql.language.FloatValue;
import graphql.language.IntValue;
import graphql.language.NullValue;
import graphql.language.ObjectValue;
import graphql.language.StringValue;
import graphql.language.Value;
import graphql.language.VariableReference;
import graphql.language.ObjectField;
import graphql.scalars.util.Kit;
import graphql.schema.Coercing;
import graphql.schema.CoercingParseLiteralException;
import graphql.schema.CoercingParseValueException;
import graphql.schema.CoercingSerializeException;
import graphql.schema.GraphQLScalarType;
import org.springframework.stereotype.Component;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
@Component
public class ObjectScalar extends GraphQLScalarType {
public ObjectScalar() {
this("Object", "An object scalar");
}
ObjectScalar(String name, String description) {
super(name, description, new Coercing<Object, Object>() {
public Object serialize(Object input) throws CoercingSerializeException {
return input;
}
public Object parseValue(Object input) throws CoercingParseValueException {
return input;
}
public Object parseLiteral(Object input) throws CoercingParseLiteralException {
return this.parseLiteral(input, Collections.emptyMap());
}
public Object parseLiteral(Object input, Map<String, Object> variables)
throws CoercingParseLiteralException {
if (!(input instanceof Value)) {
throw new CoercingParseLiteralException("Expected AST type 'StringValue' but" +
" was '" + Kit.typeName(input) + "'.");
} else if (input instanceof NullValue) {
return null;
} else if (input instanceof FloatValue) {
return ((FloatValue)input).getValue();
} else if (input instanceof StringValue) {
return ((StringValue)input).getValue();
} else if (input instanceof IntValue) {
return ((IntValue)input).getValue();
} else if (input instanceof BooleanValue) {
return ((BooleanValue)input).isValue();
} else if (input instanceof EnumValue) {
return ((EnumValue)input).getName();
} else if (input instanceof VariableReference) {
String varName = ((VariableReference)input).getName();
return variables.get(varName);
} else {
List values;
if (input instanceof ArrayValue) {
values = ((ArrayValue)input).getValues();
return values.stream().map((v) -> {
return this.parseLiteral(v, variables);
}).collect(Collectors.toList());
} else if (input instanceof ObjectValue) {
values = ((ObjectValue)input).getObjectFields();
Map<String, Object> parsedValues = new LinkedHashMap();
values.forEach((fld) -> {
Object parsedValue = this.parseLiteral(((ObjectField)fld).getValue(),
variables);
parsedValues.put(((ObjectField)fld).getName(), parsedValue);
});
return parsedValues;
} else {
return Assert.assertShouldNeverHappen("We have covered all Value types",
new Object[0]);
}
}
}
});
}
}
scalar Object
type Result {
value : Object
}
Upvotes: 3
Reputation: 528
You can use this package https://www.npmjs.com/package/graphql-type-json.
Example:
import { makeExecutableSchema } from 'graphql-tools';
import GraphQLJSON, { GraphQLJSONObject } from 'graphql-type-json';
const typeDefs = `
scalar JSON
scalar JSONObject
type MyType {
myValue: JSON
myObject: JSONObject
}
# ...
`;
const resolvers = {
JSON: GraphQLJSON,
JSONObject: GraphQLJSONObject,
};
export default makeExecutableSchema({ typeDefs, resolvers });
Upvotes: 4