from json
factory Graphql.fromJson(Map<String, dynamic> json) => Graphql( user: json["user"] == null ? null : User.fromJson(json["user"]), );