SchemaMap constructor

SchemaMap({
  1. String? output,
  2. String? schema,
  3. String? queriesGlob,
  4. String? fragmentsGlob,
  5. String typeNameField = '__typename',
  6. bool appendTypeName = false,
  7. NamingScheme? namingScheme = NamingScheme.pathedWithTypes,
})

Instantiates a schema mapping.

Implementation

SchemaMap({
  this.output,
  this.schema,
  this.queriesGlob,
  this.fragmentsGlob,
  this.typeNameField = '__typename',
  this.appendTypeName = false,
  this.namingScheme = NamingScheme.pathedWithTypes,
});