Mandarine Query Language
Mandarine Query Language (MQL) is a sub-module of Mandarine's repositories. Although, MQL is considered an autonomous submodule.
Main
The lexical processor
findByAirlineAndPassengerName(airline: string, passengerName: string)SELECT * FROM MyTable WHERE airline = $1 AND passengerName = $2
# MyTable = Table of your model related to your repository
# $1 = airline parameter
# $2 = passengerName parameterMQL Operators
Definers
General definers
"Save" definer
Naming conventions
Last updated