{"id":20759839,"url":"https://github.com/owsas/parse-query-gen","last_synced_at":"2025-04-30T05:21:06.503Z","repository":{"id":57319461,"uuid":"107897652","full_name":"owsas/parse-query-gen","owner":"owsas","description":"Search your Parse Backend easily with objects. Write objects, get queries.","archived":false,"fork":false,"pushed_at":"2020-09-04T08:26:03.000Z","size":82,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T13:02:16.434Z","etag":null,"topics":["mongodb","parse","parse-modules","parse-server","query"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/owsas.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-10-22T19:50:18.000Z","updated_at":"2021-10-31T16:12:38.000Z","dependencies_parsed_at":"2022-08-25T20:41:18.928Z","dependency_job_id":null,"html_url":"https://github.com/owsas/parse-query-gen","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owsas%2Fparse-query-gen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owsas%2Fparse-query-gen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owsas%2Fparse-query-gen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/owsas%2Fparse-query-gen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/owsas","download_url":"https://codeload.github.com/owsas/parse-query-gen/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251645887,"owners_count":21620831,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["mongodb","parse","parse-modules","parse-server","query"],"created_at":"2024-11-17T10:08:29.529Z","updated_at":"2025-04-30T05:21:06.466Z","avatar_url":"https://github.com/owsas.png","language":"TypeScript","funding_links":["https://patreon.com/owsas"],"categories":[],"sub_categories":[],"readme":"# Parse Query Generator\n\nThis software is meant to be used with `parse-server`. It lets you write \nan object and get an equivalent `Parse.Query` in Javascript.\n\n## Examples\n\n```js\n// es6+\nimport { ParseQueryGen } from 'parse-query-gen';\n\n// es5\nconst ParseQueryGen = require('parse-query-gen').ParseQueryGen;\n\n// use\nconst query = ParseQueryGen.gen({\n  className: 'MyClass',\n  equalTo: {\n    active: true,\n    awesome: 'absolutely',\n  }\n});\n\n// now your code...\nquery.find().then(...)\n```\n\n## Supported keys\n\n```ts\ninterface IParams {\n  className?: string; \n  equalTo?: {[key:string]: any}; // example: { great: true }\n  containedIn?: {[key:string]: any};\n  notEqualTo?: {[key:string]: any}; \n  lessThan?: {[key:string]: any};\n  greaterThan?: {[key:string]: any}; \n  containsAll?: {[key:string]: any};  \n  include?: string[];\n  descending?: string[]; \n  ascending?: string[]; \n  query?: any;\n  matches?: {[key:string]: any;}; \n  select?: string[];\n}\n```\n\n## Credits\n\nDeveloped by Juan Camilo Guarín Peñaranda,  \nOtherwise SAS, Colombia  \n2017\n\n## License \n\nMIT.\n\n## Support us on Patreon\n[![patreon](./repo/patreon.png)](https://patreon.com/owsas)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowsas%2Fparse-query-gen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fowsas%2Fparse-query-gen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fowsas%2Fparse-query-gen/lists"}