synatic / noql

Converts SQL queries to Mongo find or aggregates
https://noql.synatic.dev/
GNU General Public License v3.0
46 stars 12 forks source link

Adding the join function for string arrays #147

Closed eXigentCoder closed 1 year ago

eXigentCoder commented 1 year ago

Adds support for the join function in select statements

Example:

    SELECT
        JOIN(`Addresses`,‘,’) AS fullAddress
    FROM
        `customers`;