| Invalid Date
字数 0阅读时长 1 分钟
💡
[P] means methods for Page Property, [D] means methods for Database Property.

1. Instance methods

[D] add_multi_select_option(name: a_name, color: a_color) → Hash

  • [PARAM] a_name new multi select name
  • [PARAM] a_color color of new multi select name
  1. add_multi_select_option of Page property raises StadndardError
  1. add_multi_select_option of Database property adds a multi-select option value of the database

    filter_contains(value) →
    🎛️
    Query

    • [PARAM] value value_for_filter
    filter_contains creates a Query object for contains filter.

    filter_does_not_contain(value) →
    🎛️
    Query

    • [PARAM] value value_for_filter
    filter_does_not_contain creates a Query object for does_not_contain filter.

    filter_is_empty →
    🎛️
    Query

    filter_is_empty creates a Query object for is_empty filter.

    filter_is_not_empty →
    🎛️
    Query

    filter_is_not_empty creates a Query object for is_not_empty filter.

    multi_select → Array, Hash

    1. multi_select of Page property returns the array of multi-select property values of the page.
    1. multi_select of Database property returns hash with multi-select options values of the database.

      [P] multi_select=(multi_select)

      1. multi_select= of Page property sets muiti-select options
      1. multi_select= of Database property raise StandardError.

        multi_select_names → Array

        1. multi_select_names of Page property returns the array of multi-select names.
        1. multi_select_names of Database property returns the array of multi-select options names of the database.

          [D] multi_select_options → Array

          1. multi_select_options of Page property raises StandardError
          1. multi_select_options of Database property returns multi-select options values of the database
             
            Loading...
            目录