Skip to content
#

typesafe

Here are 182 public repositories matching this topic...

hendrikniemann
hendrikniemann commented Sep 22, 2020

The implementation seems to think that fragments are operations:

Operation name is required for queries with multiple operations.

But this query should be fine:

{
  search {
    __typename
    ...TodoFrag
    ...UserFrag
  }
}

fragment TodoFrag on Todo {
  id
  title
}

fragment UserFrag on User {
  id
  name
}
bug help wanted good first issue
eruizalo
eruizalo commented Jun 24, 2022

Look into the following functions if they already are in doric or we have to add them:

  • def typedlit[T : TypeTag](literal: T): Column
  • def count_distinct(expr: Column, exprs: Column*): Column
  • def product(e: Column): Column
  • def sum_distinct(e: Column): Column covered in #123
  • def lag(e: Column, offset: Int, defaultValue: Any, ignoreNulls: Boolean): Column
  • [ ]
enhancement good first issue spark_3.2 API

Improve this page

Add a description, image, and links to the typesafe topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the typesafe topic, visit your repo's landing page and select "manage topics."

Learn more