Who created the Lightning Web Component?Lightning Web Component: A required metadata folder named “lwc” does not exist in this workspaceExpression Functions for Lightning Web ComponentsHow to delete a Lightning Web Component?Lightning Web Component embedded in Visualforce Page via Aura Component and App not displayingAdd Lightning Web Component to Lightning TabHow to create a Lightning Web Component without Salesforce DX?Is there a way to put a custom lightning web component inside another custom lightning web component passing parameters?Difference of Lightning Web Component and Lightning Web Component Open Source

Are there indications of a loss of past historical records in Star Trek universe?

Can you combine DDR3 and DDR4?

Will a falling rod stay in contact with the frictionless floor?

How do you help a new player evaluate complex multiclassing options without driving them and yourself crazy?

How do I animate a smooth transition between all colours in the RGB spectrum?

Storing info in JWT payload

Is there a guide/reference for possible character hairstyles in D&D Forgotten Realms universe?

Is "to go berserk" used by native speakers or is it obsolete?

Runge-Kutta in the presence of an attractor

Why are old computers so vulnerable to temperature changes and moisture?

Name of partial derivatives where the order of differentiation can be reversed.

Hello? Who is there?

Help me identify this brick / bracket

Is the worst version of the accusations against President Trump impeachable?

4 Attempts to Guess a Number Between 1-15

Why the highlighted outline in animated cartoons?

How to perfectly service a car yourself

Why is a living creature being frozen in carbonite in “The Mandalorian” so common when it seemed so risky in “The Empire Strikes Back?”

Why is it recommended to combine WordPress and Godaddy for hosting?

Brainfuck interpreter written in C

What stops one country from issuing another country's passports?

What did Rex Kramer mean by routing the plane in Lake Michigan?

When to differentiate under the integral sign.

How to know the Job-Offer letter is legal or correct?



Who created the Lightning Web Component?


Lightning Web Component: A required metadata folder named “lwc” does not exist in this workspaceExpression Functions for Lightning Web ComponentsHow to delete a Lightning Web Component?Lightning Web Component embedded in Visualforce Page via Aura Component and App not displayingAdd Lightning Web Component to Lightning TabHow to create a Lightning Web Component without Salesforce DX?Is there a way to put a custom lightning web component inside another custom lightning web component passing parameters?Difference of Lightning Web Component and Lightning Web Component Open Source






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty
margin-bottom:0;









5


















Is there the possibility to query Lightning Web Component as for every other metadata (apex class, visualforce, etc...)?
I see them on VS Code but I cannot know the CreatedBy, CreatedDate and the LastModifiedDate.



So, how can I know the CreatedBy, CreatedDate and the LastModifiedDate of a LWC?










share|improve this question

































    5


















    Is there the possibility to query Lightning Web Component as for every other metadata (apex class, visualforce, etc...)?
    I see them on VS Code but I cannot know the CreatedBy, CreatedDate and the LastModifiedDate.



    So, how can I know the CreatedBy, CreatedDate and the LastModifiedDate of a LWC?










    share|improve this question





























      5













      5









      5








      Is there the possibility to query Lightning Web Component as for every other metadata (apex class, visualforce, etc...)?
      I see them on VS Code but I cannot know the CreatedBy, CreatedDate and the LastModifiedDate.



      So, how can I know the CreatedBy, CreatedDate and the LastModifiedDate of a LWC?










      share|improve this question
















      Is there the possibility to query Lightning Web Component as for every other metadata (apex class, visualforce, etc...)?
      I see them on VS Code but I cannot know the CreatedBy, CreatedDate and the LastModifiedDate.



      So, how can I know the CreatedBy, CreatedDate and the LastModifiedDate of a LWC?







      lightning-web-components lastmodifieddate createddate






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Sep 20 at 13:36









      Oleh Berehovskyi

      2,5971 gold badge8 silver badges28 bronze badges




      2,5971 gold badge8 silver badges28 bronze badges










      asked Sep 19 at 16:08









      DarkSkullDarkSkull

      1,1191 gold badge13 silver badges32 bronze badges




      1,1191 gold badge13 silver badges32 bronze badges























          2 Answers
          2






          active

          oldest

          votes


















          11



















          To get CreatedBy, CreatedDate, LastModifiedDate fields values of your LWC bundle you can perform Tooling API request of the LightningComponentBundle



          Also, you can use your Developer Console, and perform SOQL query with Tooling API:



          SELECT Id, DeveloperName, CreatedBy.Name, CreatedDate, LastModifiedDate
          FROM LightningComponentBundle
          /* Optional filters */


          DevConsole






          share|improve this answer


































            7



















            Only Aura components are exposed for querying by SOQL but LWC components are not exposed for querying (But can query from tooling API - shown in answer by @OlehBerehovskyi). However, you find both Aura and LWC in Setup > Quick find > Lightning Components.



            Notice the Type column which gives info of Aura/LWC. Also you can get CreatedBy, CreatedDate and the LastModifiedDate of a LWC



            enter image description here



            enter image description here






            share|improve this answer




























              Your Answer








              StackExchange.ready(function()
              var channelOptions =
              tags: "".split(" "),
              id: "459"
              ;
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function()
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled)
              StackExchange.using("snippets", function()
              createEditor();
              );

              else
              createEditor();

              );

              function createEditor()
              StackExchange.prepareEditor(
              heartbeatType: 'answer',
              autoActivateHeartbeat: false,
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader:
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              ,
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              );



              );














              draft saved

              draft discarded
















              StackExchange.ready(
              function ()
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f278747%2fwho-created-the-lightning-web-component%23new-answer', 'question_page');

              );

              Post as a guest















              Required, but never shown


























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              11



















              To get CreatedBy, CreatedDate, LastModifiedDate fields values of your LWC bundle you can perform Tooling API request of the LightningComponentBundle



              Also, you can use your Developer Console, and perform SOQL query with Tooling API:



              SELECT Id, DeveloperName, CreatedBy.Name, CreatedDate, LastModifiedDate
              FROM LightningComponentBundle
              /* Optional filters */


              DevConsole






              share|improve this answer































                11



















                To get CreatedBy, CreatedDate, LastModifiedDate fields values of your LWC bundle you can perform Tooling API request of the LightningComponentBundle



                Also, you can use your Developer Console, and perform SOQL query with Tooling API:



                SELECT Id, DeveloperName, CreatedBy.Name, CreatedDate, LastModifiedDate
                FROM LightningComponentBundle
                /* Optional filters */


                DevConsole






                share|improve this answer





























                  11















                  11











                  11









                  To get CreatedBy, CreatedDate, LastModifiedDate fields values of your LWC bundle you can perform Tooling API request of the LightningComponentBundle



                  Also, you can use your Developer Console, and perform SOQL query with Tooling API:



                  SELECT Id, DeveloperName, CreatedBy.Name, CreatedDate, LastModifiedDate
                  FROM LightningComponentBundle
                  /* Optional filters */


                  DevConsole






                  share|improve this answer
















                  To get CreatedBy, CreatedDate, LastModifiedDate fields values of your LWC bundle you can perform Tooling API request of the LightningComponentBundle



                  Also, you can use your Developer Console, and perform SOQL query with Tooling API:



                  SELECT Id, DeveloperName, CreatedBy.Name, CreatedDate, LastModifiedDate
                  FROM LightningComponentBundle
                  /* Optional filters */


                  DevConsole







                  share|improve this answer















                  share|improve this answer




                  share|improve this answer








                  edited Sep 19 at 19:55

























                  answered Sep 19 at 16:34









                  Oleh BerehovskyiOleh Berehovskyi

                  2,5971 gold badge8 silver badges28 bronze badges




                  2,5971 gold badge8 silver badges28 bronze badges


























                      7



















                      Only Aura components are exposed for querying by SOQL but LWC components are not exposed for querying (But can query from tooling API - shown in answer by @OlehBerehovskyi). However, you find both Aura and LWC in Setup > Quick find > Lightning Components.



                      Notice the Type column which gives info of Aura/LWC. Also you can get CreatedBy, CreatedDate and the LastModifiedDate of a LWC



                      enter image description here



                      enter image description here






                      share|improve this answer































                        7



















                        Only Aura components are exposed for querying by SOQL but LWC components are not exposed for querying (But can query from tooling API - shown in answer by @OlehBerehovskyi). However, you find both Aura and LWC in Setup > Quick find > Lightning Components.



                        Notice the Type column which gives info of Aura/LWC. Also you can get CreatedBy, CreatedDate and the LastModifiedDate of a LWC



                        enter image description here



                        enter image description here






                        share|improve this answer





























                          7















                          7











                          7









                          Only Aura components are exposed for querying by SOQL but LWC components are not exposed for querying (But can query from tooling API - shown in answer by @OlehBerehovskyi). However, you find both Aura and LWC in Setup > Quick find > Lightning Components.



                          Notice the Type column which gives info of Aura/LWC. Also you can get CreatedBy, CreatedDate and the LastModifiedDate of a LWC



                          enter image description here



                          enter image description here






                          share|improve this answer
















                          Only Aura components are exposed for querying by SOQL but LWC components are not exposed for querying (But can query from tooling API - shown in answer by @OlehBerehovskyi). However, you find both Aura and LWC in Setup > Quick find > Lightning Components.



                          Notice the Type column which gives info of Aura/LWC. Also you can get CreatedBy, CreatedDate and the LastModifiedDate of a LWC



                          enter image description here



                          enter image description here







                          share|improve this answer















                          share|improve this answer




                          share|improve this answer








                          edited Sep 19 at 17:01

























                          answered Sep 19 at 16:34









                          salesforce-sassalesforce-sas

                          14.2k2 gold badges5 silver badges30 bronze badges




                          14.2k2 gold badges5 silver badges30 bronze badges































                              draft saved

                              draft discarded















































                              Thanks for contributing an answer to Salesforce Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid


                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.

                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f278747%2fwho-created-the-lightning-web-component%23new-answer', 'question_page');

                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown









                              Popular posts from this blog

                              Distance measures on a map of a game The 2019 Stack Overflow Developer Survey Results Are Inmin distance in a graphShortest distance path on contour plotHow to plot a tilted map?Finding points outside of a diskDelaunay link distanceAnnulus from GeoDisks: drawing a ring on a mapNegative Correlation DistanceFind distance along a path (GPS coordinates)Finding position at given distance in a GeoPathMathematics behind distance estimation using camera

                              How to get a smooth, uniform ParametricPlot of a 2D Region?How to plot a complicated Region?How to exclude a region from ParametricPlotHow discretize a region placing vertices on a specific non-uniform gridHow to transform a Plot or a ParametricPlot into a RegionHow can I get a smooth plot of a bounded region?Smooth ParametricPlot3D with RegionFunction?Smooth border of a region ParametricPlotSmooth region boundarySmooth region plot from list of pointsGet minimum y of a certain x in a region

                              Genealogie vun de Merowenger Vum Merowech bis zum Chilperich I. | Navigatiounsmenü