All Projects → lwc-soql-builder → lwc-soql-builder

lwc-soql-builder / lwc-soql-builder

Licence: MIT license
Awesome SOQL execution tool developed in Lightning Web Components Open Source

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to lwc-soql-builder

quiz-host-app
Multiplayer quiz app built on Salesforce technology (host app)
Stars: ✭ 69 (-18.82%)
Mutual labels:  salesforce, lwc, lightning-web-components, lwc-oss
awesome-lwc
A list of interesting on platform Lightning Web Components resources and code examples
Stars: ✭ 124 (+45.88%)
Mutual labels:  salesforce, lwc, lightning-web-components, lwc-oss
lwc-redux
Integrate Redux with Lightning Web Component
Stars: ✭ 35 (-58.82%)
Mutual labels:  salesforce, lwc, lightning-web-components
lwc-streaming-api
Lightning Web Component Streaming API
Stars: ✭ 25 (-70.59%)
Mutual labels:  salesforce, lwc, lightning-web-components
one-pub-sub-lwc
One PubSub: A Declarative PubSub Library for Lightning Web Component and Aura Component
Stars: ✭ 19 (-77.65%)
Mutual labels:  salesforce, lwc, lightning-web-components
apex-rollup
Fast, configurable, elastically scaling custom rollup solution. Apex Invocable action, one-liner Apex trigger/CMDT-driven logic, and scheduled Apex-ready.
Stars: ✭ 133 (+56.47%)
Mutual labels:  salesforce, lwc, lightning-web-components
timeline-component-lwc
This component enables timeline view for Salesforce Record history.
Stars: ✭ 18 (-78.82%)
Mutual labels:  salesforce, lwc, lightning-web-components
PaymentForm
A form that takes credit card and address information. Uses a ported version of jessie pollack's card component.
Stars: ✭ 40 (-52.94%)
Mutual labels:  salesforce, lwc, lightning-web-components
lwc-modules
Build any LWC you want without ever having to touch Apex
Stars: ✭ 20 (-76.47%)
Mutual labels:  salesforce, soql, lwc
NebulaFramework
A development framework for Salesforce's Apex language & the Force.com platform
Stars: ✭ 28 (-67.06%)
Mutual labels:  salesforce, soql
Apex-Code-Conventions
Apex conventions and best practices for Salesforce Developers
Stars: ✭ 28 (-67.06%)
Mutual labels:  salesforce, soql
lightning-chatter-messenger
⚡ Lightweight Chatter messenger utility item, which supports real-time private conversation, in Salesforce Lightning Experience. Built by Lightning Web Component.
Stars: ✭ 33 (-61.18%)
Mutual labels:  salesforce, lightning-web-components
Related-List-LWC
My first real foray into Lightning Web Components - an sobject / list view driven lightning data table
Stars: ✭ 21 (-75.29%)
Mutual labels:  salesforce, lwc
build-apps-with-lwc
Ursus Park sample app for Trailhead project Build Flexible Apps with Lightning Web Components
Stars: ✭ 18 (-78.82%)
Mutual labels:  salesforce, lwc
rcast
🎧 PWA podcast player written with LWC
Stars: ✭ 72 (-15.29%)
Mutual labels:  lwc, lightning-web-components
dreaminvest-lwc
Sample application for Lightning Web Components on Salesforce Platform. Part of the sample gallery. Financial services use case. Get inspired and learn best practices.
Stars: ✭ 41 (-51.76%)
Mutual labels:  salesforce, lightning-web-components
visualforce-to-lwc
A collection of code examples to help you move from Visualforce to LWC.
Stars: ✭ 92 (+8.24%)
Mutual labels:  salesforce, lightning-web-components
sfdx-lwc-fullcalendarjs
Full Calendar JS - Lightning Web Components
Stars: ✭ 44 (-48.24%)
Mutual labels:  lwc, lightning-web-components
codeceptjs-bdd
Javascript BDD UI Automation Framework. Exclusive LWC Shadow DOM Support. Playwright, Webdriver.io, Appium, Saucelabs.
Stars: ✭ 35 (-58.82%)
Mutual labels:  salesforce, lwc
sfdx-lwc-jest
Run Jest against LWC components in SFDX workspace environment
Stars: ✭ 136 (+60%)
Mutual labels:  salesforce, lwc

LWC SOQL Builder

LWC SOQL Builder is a SOQL execution tool developed in LWC Open Source. LWC SOQL Builder makes building and running SOQL in Salesforce incredibly easy.

For more information, visit https://lwc-soql-builder.github.io/

Features

  • Point and Click User Interface
    • A point and click user interface enables you to add SOQL boilerplate, fields, parent relationships, subquery and run a query.
  • Autocomplete
    • Autocomplete is a feature that make you to complete field name. You can search by field label as well as by field name.
  • PWA Support
    • LWC SOQL Builder can be installed as Progressive Web App (PWA). You can install it like a normal desktop app.
  • Format SOQL
    • LWC SOQL Builder allows you to instantly beautify your SOQL queries. Formatted SOQL is very easy to use in Apex code.
  • CSV Export
    • You can export the query result to a CSV file. The CSV file can be upserted to Salesforce using Data Loader.
  • Support for ignoring default namespace
    • You can run a SOQL without the namespace prefix of a managed package. So, you can copy and paste the SOQL into your Apex code as-is.

How to setup local machine for development

  1. Setup proxy. You must set proxy.allowed_origin=http://localhost:3001.
    For more information, see lwc-soql-builder/jsforce-ajax-proxy-cloud-functions

  2. Copy & edit config/development.js.example file to add your custom configurations.

$ cp config/development.js.example config/development.js
  1. Run the following command to start the app.
$ npm run watch

This will start the project with a local development server on http://localhost:3001.

To ensure that you can view your changes, in Chrome DevTools, go to Application tab, click 'Service Workers' and select 'Bypass for network'.

How to deploy

  1. Setup proxy. You must set proxy.allowed_origin=http://<username>.github.io.
    For more information, see lwc-soql-builder/jsforce-ajax-proxy-cloud-functions

  2. Copy & edit config/production.js.example file to add your custom configurations.

$ cp config/production.js.example config/production.js
  1. Run the following command to build and deploy.
$ npm run deploy

This will publish files in dist/ to a gh-pages branch on GitHub.

  1. You can access LWC SOQL Builder with the following URL.
    http://<username>.github.io/lwc-soql-builder/
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].