-
-
Notifications
You must be signed in to change notification settings - Fork 4
release: 2025-04-25 #1479
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
release: 2025-04-25 #1479
Conversation
<!--- Please provide a general summary of your changes in the title above --> # Pull Request type <!-- Please try to limit your pull request to one type; submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [ ] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no API changes) - [ ] Build-related changes - [ ] Documentation content changes - [x] Other (please describe): ## What is the current behavior? <!-- Please describe the current behavior that you are modifying, or link to a relevant issue. --> Issue Number: N/A ## What is the new behavior? several new DB views have been created which can be used for future data pulls. This will help to ensure the same tables and relationships are queried each time data analysis is needed. These views can also be used in future dashboards. **EYO Data Pull uses these values** Orgs per country and services per country broken down by categories and attributes - to get number of ratings: ``` SELECT * FROM public."OrgReview" orgr where EXTRACT(YEAR FROM orgr."createdAt") = 2024 AND "rating" IS NOT null ``` - to get number of reviews: ``` SELECT * FROM public."OrgReview" orgr where EXTRACT(YEAR FROM orgr."createdAt") = 2024 AND "reviewText" IS NOT null ``` - to get number of services by category and country: run the “services_count_category_by_country” view - to get service count by state: run the “services_count_by_state” view - this will list states and countries - to get service count by country: run the “services_count_by_country” view - to get services count by country and attribute: run the “services_count_by_country_attribute” view - to get organizations count by state: run the “organizations_count_by_state” view - this will list states and countries - to get organizations count by country: run the “organizations_count_by_country” view - to get organizations count by country and attribute: run the “organizations_count_by_country_attribute” view - there are two specific for California - which are similar to the above except just for California - -published_orgs_services_california - -services_count_by_category_califorinia ## Does this introduce a breaking change? - [ ] Yes - [ ] No <!-- If this does introduce a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR, such as screenshots of how the component looks before and after the change. -->
<!--- Please provide a general summary of your changes in the title above --> # Pull Request type <!-- Please try to limit your pull request to one type; submit multiple pull requests if needed. --> Please check the type of change your PR introduces: - [ ] Bugfix - [x] Feature - [ ] Code style update (formatting, renaming) - [ ] Refactoring (no functional changes, no API changes) - [ ] Build-related changes - [ ] Documentation content changes - [ ] Other (please describe): ## What is the current behavior? There is no route support for a generic international landing page at search/intl users must search based on a country first Issue Number: N/A ## What is the new behavior? this PR provides a basic route for /search/intl which brings users to a basic international landing page. the title reads "InReach only operates in North America." then lists information for a few international resources. - - - ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this does introduce a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR, such as screenshots of how the component looks before and after the change. -->
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Important Review skippedReview was skipped due to path filters ⛔ Files ignored due to path filters (13)
CodeRabbit blocks several paths by default. You can override this behavior by explicitly including those paths in the path filters. For example, including You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
|
Pull Request type
Please check the type of change your PR introduces:
What is the current behavior?
Issue Number: N/A
What is the new behavior?
ECB-57, ECB-87 - new views for data pulls
ECB-101 - generic intl url - /search/intl
Does this introduce a breaking change?
Other information