# File lib/chef_zero/data_store/v1_to_v2_adapter.rb, line 75
      def list(path)
        raise DataNotFoundError.new(path) if skip_organizations?(path)
        if path == []
          [ 'organizations' ]
        elsif path == [ 'organizations' ]
          [ single_org ]
        else
          fix_exceptions do
            real_store.list(path[2..-1])
          end
        end
      end