The querybuilder needs some queries to be functional to build queries. Since we use bootstrapping approach, some querys needs to be hardcoded, becouse without them no building would be possible.

Bootstraped queries are stored in table wp_wr_boostrapped_query:

By convention, bootstrapped query identifier starts with “mod_qb_query”

When the executer gets a query identifer like this, it tries to load the query from the wp_wr_boostraped_query table.

Bootstrapped queries are also configured with wonderful relation. So you can look at it in the query service.

This concept allows us to have as less es possible queries flying around in php code.  

  • Optimiziation Possibility
  • Organisation
  • Reusability
  • Caching