Skip to main content
Version: v3.x

The Get Schema Function

getSchema is the first interesting function. We're going to define scalar types, and an object type and a collection for each table in the configuration. Let's first define the scalar types. In fact, we're only going to define one, called any:

In it, we're going to define scalar types, and an object type and a collection for each table in the configuration. For this course, we're going to ignore the functions and procedures fields, but we'll cover those in a later courses.

It takes the Configuration as an argument, and returns an abject in the format of the SchemaResponse shape.

Let's first define the scalar types. In fact, we're only going to define one, called any as a string literal:

async function getSchema(configuration: Configuration): Promise<SchemaResponse> {
let scalar_types: { [k: string]: ScalarType } = {
any: {
aggregate_functions: {},
comparison_operators: {
eq: {
type: "equal",
},
},
},
};
}

any is a generic scalar type that we'll use as the type of all of our columns. It doesn't have any aggregates defined, and only a single equality comparison operator, eq. Later, when we talk about those features, we'll need to split this type up into several different scalar types.

Now let's define the object types.

async function getSchema(configuration: Configuration): Promise<SchemaResponse> {
let scalar_types: { [k: string]: ScalarType } = {
any: {
aggregate_functions: {},
comparison_operators: {
eq: {
type: "equal",
},
},
},
};

let object_types: { [k: string]: ObjectType } = {};

for (const table of configuration.tables) {
let fields: { [k: string]: ObjectField } = {};

for (const columnName in table.columns) {
fields[columnName] = {
type: {
type: "named",
name: "any",
},
};
}

object_types[table.tableName] = {
fields,
};
}
}

Here we create one ObjectType definition for each table in the configuration.

Notice that the name of the object type is the name of the table, and each column uses the any type that we just defined.

Collections

Now let's define the collections for the getSchema function inside the getSchema function. We'll define one collection:

let collections: CollectionInfo[] = configuration.tables.map((table) => {
return {
arguments: {},
name: table.tableName,
deletable: false,
foreign_keys: {},
uniqueness_constraints: {},
type: table.tableName,
};
});

Again, we define one collection per table in the configuration, and we use the object type with the same name that we just defined.

Now we can put the schema response together:

async function getSchema(configuration: Configuration): Promise<SchemaResponse> {
let collections: CollectionInfo[] = configuration.tables.map((table) => {
return {
arguments: {},
name: table.tableName,
deletable: false,
foreign_keys: {},
uniqueness_constraints: {},
type: table.tableName,
};
});

let scalar_types: { [k: string]: ScalarType } = {
any: {
aggregate_functions: {},
comparison_operators: {
eq: {
type: "equal",
},
},
},
};

let object_types: { [k: string]: ObjectType } = {};

for (const table of configuration.tables) {
let fields: { [k: string]: ObjectField } = {};

for (const columnName in table.columns) {
fields[columnName] = {
type: {
type: "named",
name: "any",
},
};
}

object_types[table.tableName] = {
fields,
};
}

return {
functions: [],
procedures: [],
collections,
object_types,
scalar_types,
};
}

As mentioned before, we aren't defining functions or procedures, but we'll cover those features later.

Now we almost have a working connector apart from actually querying the database. Let's set up some testing, so we know what we're working to and when we're done.

Loading...