pis #12

Merged
fred.boniface merged 95 commits from pis into main 2023-05-06 21:54:51 +01:00
1 changed files with 16 additions and 0 deletions
Showing only changes of commit 038670acf2 - Show all commits

View File

@ -0,0 +1,16 @@
// Finds PIS Codes using DB Lookups
const db = require('../services/dbAccess.services')
const log = require('../utils/log.utils')
async function findPisByOrigDest(start,end) {
log.out(`pisServices.findPisByOrigDest: Searching for PIS for Orig: ${start}, Dest: ${end}`, "dbug")
/* Here, I need to query the collection for a document with a stops array starting with $start
and ending with $end. This will return an array of one or more pis codes and stopping patterns*/
const search = db.query("pis", {query:query})
return search
}
module.exports = {
findPisByOrigDest
}