Comments

Updated
January 13, 2024

In the Composer, you can use comments to add explanations or to ignore certain parts of your query.

  • Inline comments (or single-line comments): These start with //. The composer will disregard anything after // on the same line.
sales > $10 // This is an inline comment
  • Block comments (or multi-line comments): These start with /* and end with */. The composer will disregard anything between /* and */.

 Example:

Need more help?