
admin.databaseGetFieldTokenizerOverrides( config as element(configuration), database-id as (Number|String), field-name as String ) as Sequence
This function fetches any custom tokenizer override specifications for the specified field and database. For details, see Custom Tokenization in the Search Developer's Guide.
http://marklogic.com/xdmp/privileges/admin/database
http://marklogic.com/xdmp/privileges/admin/database/{id}
const admin = require('/MarkLogic/admin.xqy');
const config = admin.getConfiguration()
  admin.databaseGetFieldTokenizerOverrides(
    config, xdmp.database("myDatabase"), "myField")
 //Return the tokenizer override settings 
    
  
Stack Overflow: Get the most useful answers to questions from the MarkLogic community, or ask your own question.