This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| parse-dashboard --appId Fpt6qU5NBrTfXX8igAmRuKJqHfPQODTS3dAk8H4s --masterKey CBVQ4c2r3zV4xW2VtQQzvQj2HdPsHQzF3l8ONSDA --serverURL "http://0.0.0.0:1337/parse/" --appName AQHJ --allowInsecureHTTP true | |
| parse-server --appId Fpt6qU5NBrTfXX8igAmRuKJqHfPQODTS3dAk8H4s --masterKey CBVQ4c2r3zV4xW2VtQQzvQj2HdPsHQzF3l8ONSDA --databaseURI 'mongodb://userbad4ae:ebfbd0Ra8TpzA1007d7@cluster-pgrs1000-0-us-east-1-scalabledbs.cloudstrap.io:29000,cluster-pgrs1000-1-us-east-1-scalabledbs.cloudstrap.io:29000,cluster-pgrs1000-2-us-east-1-scalabledbs.cloudstrap.io:29000/pg-app-2-us-8x3xr2lw78svljyki0depcssvud9u9?replicaSet=pgrs1000&ssl=true' --serverURL 'http://0.0.0.0:1337/parse/' --cloud '/Users/luisoto/Documents/AQHJ/pg-app-8x3xr2lw78svljyki0depcssvud9u9/cloud/main.js' | |
| [ | |
| { | |
| "table_id": 544, | |
| "name": "Grupo H - Fecha 3", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| idCandidate, | |
| idEmployer | |
| FROM | |
| `merlin_analysis_v2.Chat` | |
| WHERE | |
| timestamp > timestamp ("2018-01-01 00:00:00") | |
| GROUP BY | |
| idCandidate, | |
| idEmployer EXCEPT DISTINCT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| value AS idCandidate, | |
| idUserEmployer AS idEmployer | |
| FROM | |
| `merlin_events.Event`, | |
| UNNEST(properties) | |
| WHERE | |
| eventName = "block-user-chat" | |
| AND idUserEmployer IS NOT NULL | |
| AND key = "id_user_blocked" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| value AS idCandidate | |
| FROM | |
| `merlin_events.Event`, | |
| UNNEST(properties) | |
| WHERE | |
| eventName = "block-user-chat" | |
| AND idUserEmployer IS NOT NULL | |
| AND key = "id_user_blocked" | |
| GROUP BY |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| idChat | |
| FROM | |
| `merlin_analysis_v2.Chat` | |
| WHERE | |
| idSender = idEmployer | |
| AND timestamp >= TIMESTAMP("2018-01-01 00:00:00") INTERSECT DISTINCT | |
| SELECT | |
| idChat | |
| FROM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| idChat | |
| FROM | |
| `merlin_analysis_v2.Chat` | |
| WHERE | |
| timestamp > timestamp ("2018-01-01 00:00:00") | |
| GROUP BY | |
| idChat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| idJob | |
| FROM | |
| `merlin_events.Event` | |
| WHERE | |
| eventName = "Shortlist" | |
| AND idJob IN ( | |
| SELECT | |
| idJob | |
| FROM |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| percentile_cont(totalChats, | |
| 0.25) OVER() | |
| FROM ( | |
| SELECT | |
| idJob, | |
| COUNT(idJob) AS totalChats | |
| FROM ( | |
| SELECT | |
| idChat, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| percentile_cont(totalShortlist, | |
| 0.75) OVER() | |
| FROM ( | |
| SELECT | |
| idJob, | |
| COUNT(idJob) AS totalShortlist | |
| FROM | |
| `merlin_events.Event` | |
| WHERE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SELECT | |
| percentile_cont(totalChats, | |
| 0.25) OVER() | |
| FROM ( | |
| SELECT | |
| idJob, | |
| COUNT(idJob) AS totalChats | |
| FROM ( | |
| SELECT | |
| t3.*, |
NewerOlder