Loading TOC...

view.schemaRemove

view.schemaRemove(
   schema-name as String
) as null

Summary

This function removes the specified schema. Removing a schema removes all the views that are part of that schema.

Parameters
schema-name The name of the schema to be removed.

Example

const view = require('/MarkLogic/views');

view.schemaRemove('main');

// Remove the schema, named 'main'.
   

Stack Overflow iconStack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.