Skip to content

Comments

IN THIS ARTICLE

Add inline notes to your rules or formulas so teams understand what each part does.

CONTENTS

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: